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)