From f6bafce535fe2a003f0df2562000c4cd4ada3fcf Mon Sep 17 00:00:00 2001 From: Kaialan Date: Sun, 23 Jun 2024 14:29:06 +0530 Subject: [PATCH] fix: livepage countdown timer time --- src/pages/live/Live.jsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/live/Live.jsx b/src/pages/live/Live.jsx index d273384..ae77070 100644 --- a/src/pages/live/Live.jsx +++ b/src/pages/live/Live.jsx @@ -14,12 +14,12 @@ import "./Live.scss"; import EventSection from "./EventSection"; const Live = () => { - const LiveDate = new Date("2024-06-22T18:00:00"); - // const LiveDate = new Date("2024-06-28T18:00:00"); + // const LiveDate = new Date("2024-06-22T18:00:00"); + const LiveDate = new Date("2024-06-28T18:00:00"); const calculateTimeLeft = () => { - const targetDate = new Date("2024-06-25T06:00:00"); - // const targetDate = new Date("2024-06-30T06:00:00"); + // const targetDate = new Date("2024-06-25T06:00:00"); + const targetDate = new Date("2024-06-30T06:00:00"); const now = new Date(); const difference = targetDate - now;