We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5082cd commit bf363d1Copy full SHA for bf363d1
services/explorer-ui/src/components/blocks/blocks-table.tsx
@@ -9,7 +9,6 @@ interface Props {
9
isLoading: boolean;
10
error?: Error | null;
11
disableSizeSelector?: boolean;
12
- togglePendingTxCallback?: () => void;
13
}
14
15
// TODO: Maybe make this a generic component
@@ -19,7 +18,6 @@ export const BlocksTable: FC<Props> = ({
19
18
isLoading,
20
error,
21
disableSizeSelector,
22
- togglePendingTxCallback
23
}) => {
24
if (error) { return <p className="text-red-500">{error.message}</p>; }
25
0 commit comments