From d170875e20152566e12c46b85782a91aeb35972c Mon Sep 17 00:00:00 2001 From: Hailey Date: Sat, 16 Nov 2024 10:37:40 -0800 Subject: [PATCH] use correct date --- src/lib/hooks/useEmail.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/hooks/useEmail.ts b/src/lib/hooks/useEmail.ts index d2a6b54b6e..bdacc2ce41 100644 --- a/src/lib/hooks/useEmail.ts +++ b/src/lib/hooks/useEmail.ts @@ -15,7 +15,7 @@ export function useEmail() { // Date set for 11 AM PST on the 18th of November const isNewEnough = !!profile?.createdAt && - Date.parse(profile.createdAt) >= Date.parse('2024-11-14T02:19:00.000Z') + Date.parse(profile.createdAt) >= Date.parse('2024-11-18T02:19:00.000Z') const isSelfHost = currentAccount &&