From 23ece7e498201f5e396e04a6b66a49cc0bb5f751 Mon Sep 17 00:00:00 2001 From: MVarshini Date: Sat, 30 Nov 2024 18:41:40 +0530 Subject: [PATCH] commented line in Pagination/index --- frontend/src/components/organisms/Pagination/index.jsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/src/components/organisms/Pagination/index.jsx b/frontend/src/components/organisms/Pagination/index.jsx index 65f7bbd..5b6454b 100644 --- a/frontend/src/components/organisms/Pagination/index.jsx +++ b/frontend/src/components/organisms/Pagination/index.jsx @@ -21,14 +21,12 @@ const RenderPagination = (props) => { const onSetPage = useCallback( (_evt, newPage, _perPage, startIdx, endIdx) => { dispatch(setPage(newPage, props.type)); - // dispatch(checkTableData(newPage, props.type)); }, [dispatch, props.type] ); const onPerPageSelect = useCallback( (_evt, newPerPage, newPage, startIdx, endIdx) => { dispatch(setPageOptions(newPage, newPerPage, props.type)); - // dispatch(checkTableData(newPage, props.type)); }, [dispatch, props.type] );