diff --git a/apps/note/views.py b/apps/note/views.py
index 3524a0809d6704e4cd2472ad2e22cbad74aa69a9..d08dd2ecb3fd02f1760c1547a649f160d739e6a7 100644
--- a/apps/note/views.py
+++ b/apps/note/views.py
@@ -215,7 +215,7 @@ class TransactionSearchView(ProtectQuerysetMixin, LoginRequiredMixin, DetailView
             transactions = transactions.filter(created_at__lte=data["created_before"])
 
         table = HistoryTable(transactions)
-        table.paginate(per_page=20)
+        table.paginate(per_page=100)
         context["table"] = table
 
         return context