From 4b5ad0dcabf26301cfe2da63a8e15ef73ac937a4 Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Wed, 6 May 2026 10:23:22 +0700 Subject: [PATCH] fix: show total item data --- src/components/Pagination.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Pagination.tsx b/src/components/Pagination.tsx index 43b26d90..1f2ba533 100644 --- a/src/components/Pagination.tsx +++ b/src/components/Pagination.tsx @@ -226,7 +226,7 @@ const Pagination = ({ const PageInfo = () => ( - Page {currentPage} of {totalPages} + Total Item: {totalItems} | Page {currentPage} of {totalPages} );