From f0f32e1c57b54c079a04b353e129c67bced6c2d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?han=20rodr=C3=ADguez?= Date: Sun, 18 May 2025 12:32:06 +0000 Subject: [PATCH] change target time --- frontend/src/components/Countdown.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/Countdown.tsx b/frontend/src/components/Countdown.tsx index c849a39..7929b8c 100644 --- a/frontend/src/components/Countdown.tsx +++ b/frontend/src/components/Countdown.tsx @@ -4,7 +4,7 @@ import { getLocalizedElement, languageState } from '@/app/locale'; import './Countdown.css'; const Countdown: React.FC = () => { - const targetDate = useMemo(() => new Date('2025-05-18T11:15-06:00'), []) + const targetDate = useMemo(() => new Date('2025-05-18T11:10-06:00'), []) const [timeRemaining, setTimeRemaining] = useState(targetDate.getTime() - new Date().getTime()); const [isClient, setIsClient] = useState(false)