Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
evisdrenova committed Oct 27, 2024
1 parent 485d534 commit 9c50e61
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ export default function SchemaPageTable<TData, TValue>({
transformerHandler={transformerHandler}
constraintHandler={constraintHandler}
jobType={jobType}
data={data}
/>
</div>
<div
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,13 @@ interface DataTableToolbarProps<TData> {
transformerHandler: TransformerHandler;
constraintHandler: SchemaConstraintHandler;
jobType: JobType;
data: TData[];
}

export function SchemaTableToolbar<TData>({
table,
transformerHandler,
constraintHandler,
jobType,
data,
}: DataTableToolbarProps<TData>) {
const [isExporting, setIsExporting] = useState<boolean>(false);
const [progress, setProgress] = useState(0);
Expand Down

0 comments on commit 9c50e61

Please sign in to comment.