From 2a4a16b7de4e38a07d05ae81c88404966303d138 Mon Sep 17 00:00:00 2001 From: Corwin Smith Date: Mon, 28 Jul 2025 16:24:12 -0600 Subject: [PATCH] fix 10 year date --- app/[locale]/10years/_components/CountDown/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/[locale]/10years/_components/CountDown/index.tsx b/app/[locale]/10years/_components/CountDown/index.tsx index 550ebb1308e..a978c8b1c41 100644 --- a/app/[locale]/10years/_components/CountDown/index.tsx +++ b/app/[locale]/10years/_components/CountDown/index.tsx @@ -26,7 +26,7 @@ const CountDown = ({ const [isExpired, setIsExpired] = useState(false) useEffect(() => { - const targetDate = new Date("2025-07-30T15:44:00Z") + const targetDate = new Date("2025-07-30T15:26:13Z") const calculateTimeLeft = () => { const now = new Date()