From e9b3c90b0d81121c6305b055c21dfcfb2a4a0169 Mon Sep 17 00:00:00 2001 From: Kyle Pope Date: Fri, 20 Feb 2026 01:40:38 +0800 Subject: [PATCH] Remove unused formatISO import from WeekTimeline Co-Authored-By: Claude Opus 4.6 --- frontend/src/components/dashboard/WeekTimeline.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/dashboard/WeekTimeline.tsx b/frontend/src/components/dashboard/WeekTimeline.tsx index ea3d7af..f2e1252 100644 --- a/frontend/src/components/dashboard/WeekTimeline.tsx +++ b/frontend/src/components/dashboard/WeekTimeline.tsx @@ -1,5 +1,5 @@ import { useMemo } from 'react'; -import { format, startOfWeek, addDays, isSameDay, isBefore, startOfDay, formatISO } from 'date-fns'; +import { format, startOfWeek, addDays, isSameDay, isBefore, startOfDay } from 'date-fns'; import type { UpcomingItem } from '@/types'; import { cn } from '@/lib/utils';