From 64f79fc23e9197ea386c16eb2f2f0e7ccf81c103 Mon Sep 17 00:00:00 2001 From: Oscar Arreola Date: Sat, 15 Feb 2025 16:20:43 -0600 Subject: [PATCH] +40 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 c286976..8204c83 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:20:00Z"); + const targetTime = new Date("2025-02-15T23:00:00Z"); // If current time is past 4 PM, set target to tomorrow 4 PM if (now >= targetTime) {