diff --git a/frontend/src/pages/History.jsx b/frontend/src/pages/History.jsx
index 5db64bf..8ff8b1c 100644
--- a/frontend/src/pages/History.jsx
+++ b/frontend/src/pages/History.jsx
@@ -371,6 +371,42 @@ function History() {
)}
+ {/* Pagination bar */}
+ {limit !== 'all' && (() => {
+ const limitNum = parseInt(limit, 10);
+ const totalPages = Math.ceil(totalCount / limitNum);
+ if (totalPages <= 1) return null;
+ return (
+
+
+
+ Page {page} of {totalPages}
+
+
+
+ );
+ })()}
+
{/* Multi-select Action Bar */}
{selectMode && selectedIds.size > 0 && (