From a2ddf05933443fc3bb111903fe756b5ab288e66e Mon Sep 17 00:00:00 2001 From: Steven Date: Mon, 15 Dec 2025 19:58:58 +0800 Subject: [PATCH] chore: fix linter --- web/src/components/ActivityCalendar/useCalendarMatrix.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/ActivityCalendar/useCalendarMatrix.ts b/web/src/components/ActivityCalendar/useCalendarMatrix.ts index 0fae3651c..0c8dab832 100644 --- a/web/src/components/ActivityCalendar/useCalendarMatrix.ts +++ b/web/src/components/ActivityCalendar/useCalendarMatrix.ts @@ -30,7 +30,7 @@ const createCalendarDayCell = ( isCurrentMonth, isToday: isoDate === today, isSelected: isoDate === selectedDate, - isWeekend: WEEKEND_DAYS.includes(current.day()), + isWeekend: WEEKEND_DAYS.includes(current.day() as 0 | 6), }; };