From 668fbcf6e5e03273f8c0cf8db9c41be33a09e7d7 Mon Sep 17 00:00:00 2001 From: Alejandra Coeto Date: Mon, 24 Feb 2025 12:31:42 -0600 Subject: [PATCH] Sample for pr --- app/components/hack4her/countdown.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/components/hack4her/countdown.tsx b/app/components/hack4her/countdown.tsx index 579d5bb..357414e 100644 --- a/app/components/hack4her/countdown.tsx +++ b/app/components/hack4her/countdown.tsx @@ -19,6 +19,7 @@ const calculateTimeLeft = (targetDate: Date) => { }; const Countdown = () => { + // Set countdown date const targetDate = new Date("2025-05-16T15:00:00Z"); const [timeLeft, setTimeLeft] = useState(calculateTimeLeft(targetDate));