From dea704b863bfee8ace2330325730892856327f56 Mon Sep 17 00:00:00 2001 From: Revlin <134855924+AltSumpreme@users.noreply.github.com> Date: Tue, 3 Sep 2024 08:01:47 +0530 Subject: [PATCH] fix:Timer deadline changed --- src/components/timer/Timer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/timer/Timer.tsx b/src/components/timer/Timer.tsx index 86028e7..7182ab0 100644 --- a/src/components/timer/Timer.tsx +++ b/src/components/timer/Timer.tsx @@ -8,7 +8,7 @@ const Timer = () => { const [minutes, setMinutes] = useState(0); const [seconds, setSeconds] = useState(0); - const deadline = "September, 5, 2024"; + const deadline = "September, 6, 2024"; const getTime = () => { const time = Date.parse(deadline) - Date.now();