Skip to content

Commit

Permalink
Removed second comp prop (#599)
Browse files Browse the repository at this point in the history
  • Loading branch information
Malak67 authored Oct 21, 2023
1 parent dfcb16d commit ac89e97
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion services/explorer/src/components/Tables/BlocksTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ export const BlocksTable: React.FC<{
<Box display='flex' flexDirection='row' justifyContent='flex-end'>
<TablePagination
rowsPerPageOptions={[25, 50, 75, 100]}
component='div'
count={totalCount || blocksData?.length || 0}
rowsPerPage={rowsPage}
component={'div' as any}
Expand Down
1 change: 0 additions & 1 deletion services/explorer/src/components/Tables/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ export default function Table({
{showPagination && (
<TablePagination
rowsPerPageOptions={[25, 50, 75, 100]}
component='div'
count={totalCount || rows.length}
rowsPerPage={initialRowsPerPage || rowsPerPage}
page={currentPage || page}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ export const TransactionsTable: React.FC<TransactionsTableProps> = ({
>
<TablePagination
rowsPerPageOptions={[25, 50, 75, 100]}
component='div'
count={totalCount || transactionsData?.length || 0}
rowsPerPage={rowsPage}
component={'div' as any}
Expand Down

0 comments on commit ac89e97

Please sign in to comment.