From e7cebafd77c8eae026b3f5b91dbe6c1369f7c5c9 Mon Sep 17 00:00:00 2001 From: Charly Poly <1252066+charlypoly@users.noreply.github.com> Date: Tue, 24 Sep 2024 18:37:25 +0200 Subject: [PATCH] Update components/LaunchWeekBanner.tsx --- components/LaunchWeekBanner.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/LaunchWeekBanner.tsx b/components/LaunchWeekBanner.tsx index 1f17cacb4..95641b2ce 100644 --- a/components/LaunchWeekBanner.tsx +++ b/components/LaunchWeekBanner.tsx @@ -11,7 +11,7 @@ function useIsItDay3InSFNow() { const sfDate = new Date(utc + 3600000 * offset); return ( - sfDate.getDate() == 24 && + sfDate.getDate() == 25 && sfDate.getMonth() == 8 && sfDate.getFullYear() === 2024 );