From 9350ffd84dacd7a5e38adcbf17da7e08a9e2f0b5 Mon Sep 17 00:00:00 2001 From: Christian Vidal Wolf Date: Mon, 26 Jan 2026 10:29:50 +0100 Subject: [PATCH] feat: increase visible weeks in Weekly Sales from 8 to 20 --- components/WeeklyGrid.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/WeeklyGrid.tsx b/components/WeeklyGrid.tsx index 95a3f88..9623ae9 100644 --- a/components/WeeklyGrid.tsx +++ b/components/WeeklyGrid.tsx @@ -19,7 +19,7 @@ type SortConfig = { } | null; 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 const useDebounce = (value: string, delay: number) => {