From 8aa8e62bfc70cd69f6ffe1309e377cb5bd4fde4e Mon Sep 17 00:00:00 2001 From: Ishika Ishani <112965737+ishani-1255@users.noreply.github.com> Date: Sat, 21 Dec 2024 14:08:28 +0530 Subject: [PATCH] Update header.jsx --- src/components/header.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/header.jsx b/src/components/header.jsx index 0178a57..595da6a 100644 --- a/src/components/header.jsx +++ b/src/components/header.jsx @@ -19,7 +19,7 @@ const CountdownTimer = () => { }); useEffect(() => { - const targetDate = new Date("December 21, 2024 14:00:00").getTime(); + const targetDate = new Date("December 22, 2024 14:00:00").getTime(); const timer = setInterval(() => { const now = new Date().getTime(); const distance = targetDate - now;