Skip to content

Commit bf363d1

Browse files
committed
unused imports fix
1 parent d5082cd commit bf363d1

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

services/explorer-ui/src/components/blocks/blocks-table.tsx

-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ interface Props {
99
isLoading: boolean;
1010
error?: Error | null;
1111
disableSizeSelector?: boolean;
12-
togglePendingTxCallback?: () => void;
1312
}
1413

1514
// TODO: Maybe make this a generic component
@@ -19,7 +18,6 @@ export const BlocksTable: FC<Props> = ({
1918
isLoading,
2019
error,
2120
disableSizeSelector,
22-
togglePendingTxCallback
2321
}) => {
2422
if (error) { return <p className="text-red-500">{error.message}</p>; }
2523

0 commit comments

Comments
 (0)