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) => {