diff --git a/apps/user/src/components/main/ScheduleBox/ScheduleBoxItem/ScheduleBoxItem.tsx b/apps/user/src/components/main/ScheduleBox/ScheduleBoxItem/ScheduleBoxItem.tsx index 50051e112..2d17c45e1 100644 --- a/apps/user/src/components/main/ScheduleBox/ScheduleBoxItem/ScheduleBoxItem.tsx +++ b/apps/user/src/components/main/ScheduleBox/ScheduleBoxItem/ScheduleBoxItem.tsx @@ -18,7 +18,7 @@ interface Props { } const ScheduleBoxItem = ({ plan, date, startTime, endTime }: Props) => { - const active = dayjs().isBetween(startTime, endTime); + const active = !dayjs().isBetween(startTime, endTime) && dayjs().isBefore(startTime); return (