fix(QuotaSection): update MAX_ITEMS_PER_PAGE from 14 to 25 for improved pagination

This commit is contained in:
Supra4E8C
2026-02-16 19:49:53 +08:00
parent 63db0b11bc
commit 8a4eb267f0

View File

@@ -24,7 +24,7 @@ type QuotaSetter<T> = (updater: QuotaUpdater<T>) => 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<T> {