From ba2e22f8e62aca13631dda830cc9dd45d13eaab8 Mon Sep 17 00:00:00 2001 From: Nevo David Date: Mon, 28 Jul 2025 20:57:29 +0700 Subject: [PATCH] fix: remove console log --- apps/frontend/src/components/launches/calendar.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/apps/frontend/src/components/launches/calendar.tsx b/apps/frontend/src/components/launches/calendar.tsx index a82bab46..b3f708c7 100644 --- a/apps/frontend/src/components/launches/calendar.tsx +++ b/apps/frontend/src/components/launches/calendar.tsx @@ -390,10 +390,6 @@ export const CalendarColumn: FC<{ const isBeforeNow = useMemo(() => { const originalUtc = getDate.startOf('hour'); - console.log( - originalUtc.startOf('hour').format(), - dayjs().startOf('hour').utc().format() - ); return originalUtc.startOf('hour').isBefore(dayjs().startOf('hour').utc()); }, [getDate, num]);