From f26d93300bdffca18991b75341de3112005fb6f2 Mon Sep 17 00:00:00 2001 From: moo1677 Date: Wed, 28 Jan 2026 21:12:34 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=82=B4=EC=9D=BC=20=EC=9D=BC=EC=A0=95?= =?UTF-8?q?=EC=9D=B4=20=EB=B3=B4=EC=9D=B4=EC=A7=80=20=EC=95=8A=EB=8A=94=20?= =?UTF-8?q?=EB=B2=84=EA=B7=B8=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hooks/useUpcomingPlanItems.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/useUpcomingPlanItems.ts b/hooks/useUpcomingPlanItems.ts index 46ed4ed..27b0503 100644 --- a/hooks/useUpcomingPlanItems.ts +++ b/hooks/useUpcomingPlanItems.ts @@ -14,7 +14,7 @@ const startOfTomorrowKST = () => { const d = kst.getUTCDate(); // 내일 00:00 KST => UTC로 다시 변환(= -9h) - const tomorrowKSTMidnightUTC = new Date(Date.UTC(y, m, d + 2, 0, 0, 0)); + const tomorrowKSTMidnightUTC = new Date(Date.UTC(y, m, d + 1, 0, 0, 0)); const backToLocal = new Date( tomorrowKSTMidnightUTC.getTime() - 9 * 60 * 60 * 1000 );