From fad22a77336cb450ab6d200ddddfc9ff39d43275 Mon Sep 17 00:00:00 2001 From: Oscar Arreola Date: Sat, 15 Feb 2025 15:58:51 -0600 Subject: [PATCH] 20 min pls --- app/api/countdown/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/countdown/route.ts b/app/api/countdown/route.ts index da8c748..c286976 100644 --- a/app/api/countdown/route.ts +++ b/app/api/countdown/route.ts @@ -5,7 +5,7 @@ export async function GET() { const now = new Date(); // Create target time at 4 PM Monterrey time (16:00 + 6 hours) - const targetTime = new Date("2025-02-15T22:00:00Z"); + const targetTime = new Date("2025-02-15T22:20:00Z"); // If current time is past 4 PM, set target to tomorrow 4 PM if (now >= targetTime) {