From 8a4eb267f055ad4f390d38e0c85e09d549ae7f5a Mon Sep 17 00:00:00 2001 From: Supra4E8C Date: Mon, 16 Feb 2026 19:49:53 +0800 Subject: [PATCH] fix(QuotaSection): update MAX_ITEMS_PER_PAGE from 14 to 25 for improved pagination --- src/components/quota/QuotaSection.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/quota/QuotaSection.tsx b/src/components/quota/QuotaSection.tsx index 83c3d93..91c6271 100644 --- a/src/components/quota/QuotaSection.tsx +++ b/src/components/quota/QuotaSection.tsx @@ -24,7 +24,7 @@ type QuotaSetter = (updater: QuotaUpdater) => void; type ViewMode = 'paged' | 'all'; -const MAX_ITEMS_PER_PAGE = 14; +const MAX_ITEMS_PER_PAGE = 25; const MAX_SHOW_ALL_THRESHOLD = 30; interface QuotaPaginationState {