From 74c830c50e03cef3a5b97dc99aa2a75545fd5145 Mon Sep 17 00:00:00 2001 From: Karishma Shukla Date: Sun, 21 Dec 2025 17:24:42 +0530 Subject: [PATCH] feat: -rm pagination options in RunsTable --- src/components/run/RunsTable.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/components/run/RunsTable.tsx b/src/components/run/RunsTable.tsx index 65e57049..527ff703 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={[]} /> @@ -654,4 +653,4 @@ export const RunsTable: React.FC = ({ )} ); -}; \ No newline at end of file +};