diff --git a/src/components/robot/RecordingsTable.tsx b/src/components/robot/RecordingsTable.tsx
index 704a7f97..46d73574 100644
--- a/src/components/robot/RecordingsTable.tsx
+++ b/src/components/robot/RecordingsTable.tsx
@@ -618,13 +618,12 @@ export const RecordingsTable = ({
>
)}
diff --git a/src/components/run/RunsTable.tsx b/src/components/run/RunsTable.tsx
index 65e57049..9af72d14 100644
--- a/src/components/run/RunsTable.tsx
+++ b/src/components/run/RunsTable.tsx
@@ -630,11 +630,10 @@ export const RunsTable: React.FC = ({
count={data.length}
rowsPerPage={getPaginationState(robotMetaId).rowsPerPage}
page={getPaginationState(robotMetaId).page}
- onPageChange={(_, newPage) => handleChangePage(robotMetaId, newPage)}
- onRowsPerPageChange={(event) =>
- handleChangeRowsPerPage(robotMetaId, +event.target.value)
+ onPageChange={(_, newPage) =>
+ handleChangePage(robotMetaId, newPage)
}
- rowsPerPageOptions={[10, 25, 50, 100]}
+ rowsPerPageOptions={[]}
/>
@@ -647,11 +646,10 @@ export const RunsTable: React.FC = ({
page={accordionPage}
rowsPerPage={accordionsPerPage}
onPageChange={handleAccordionPageChange}
- onRowsPerPageChange={handleAccordionsPerPageChange}
- rowsPerPageOptions={[10, 25, 50, 100]}
+ rowsPerPageOptions={[]}
/>
>
)}
);
-};
\ No newline at end of file
+};