diff --git a/src/components/Common/Pagination.tsx b/src/components/Common/Pagination.tsx index fc6ed04447..ac7b913e1e 100644 --- a/src/components/Common/Pagination.tsx +++ b/src/components/Common/Pagination.tsx @@ -71,7 +71,7 @@ const Pagination = ({ }; const totalCount = data.totalCount; - if (!totalCount) { + if (!totalCount || totalCount < rowsPerPage) { return null; } const totalPage = Math.ceil(totalCount / rowsPerPage);