diff --git a/src/components/CalendarSummary.tsx b/src/components/CalendarSummary.tsx index 3a8e724..def2ff4 100644 --- a/src/components/CalendarSummary.tsx +++ b/src/components/CalendarSummary.tsx @@ -14,7 +14,10 @@ interface EventSummary { all_day: boolean } -const RANGE_DAYS = 7 +// Query window for both Mine and the All backfill — wide enough to catch +// "next week"-type events; the Upcoming list itself is capped by +// UPCOMING_LIMIT, not by this, so widening it doesn't flood the dashboard. +const RANGE_DAYS = 30 const UPCOMING_LIMIT = 6 const MIN_TOTAL = 3