From 37a3bcd72f33eac529480ca7b1d5d365e58461c2 Mon Sep 17 00:00:00 2001 From: Gabe Farrell Date: Wed, 18 Jun 2025 00:33:39 -0400 Subject: [PATCH] revert: remove year from activity grid opts --- client/app/components/ActivityOptsSelector.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/app/components/ActivityOptsSelector.tsx b/client/app/components/ActivityOptsSelector.tsx index 53a84c1..803cb0d 100644 --- a/client/app/components/ActivityOptsSelector.tsx +++ b/client/app/components/ActivityOptsSelector.tsx @@ -16,7 +16,7 @@ export default function ActivityOptsSelector({ currentRange, disableCache = false, }: Props) { - const stepPeriods = ['day', 'week', 'month', 'year']; + const stepPeriods = ['day', 'week', 'month']; const rangePeriods = [105, 182, 364]; const [collapsed, setCollapsed] = useState(true);