feat: increase visible weeks in Weekly Sales from 8 to 20

This commit is contained in:
Christian Vidal Wolf
2026-01-26 10:29:50 +01:00
parent 0fc6f2324d
commit 9350ffd84d
+1 -1
View File
@@ -19,7 +19,7 @@ type SortConfig = {
} | null; } | null;
const ROWS_PER_PAGE = 50; const ROWS_PER_PAGE = 50;
const MAX_VISIBLE_WEEKS = 8; // Limit visible weeks for performance const MAX_VISIBLE_WEEKS = 20; // Limit visible weeks for performance
// Debounce hook for search // Debounce hook for search
const useDebounce = (value: string, delay: number) => { const useDebounce = (value: string, delay: number) => {