From a174bb473bac7bf8d1e4b71f4242f6389c775884 Mon Sep 17 00:00:00 2001 From: DanRogers99 <33861884+DanRogers99@users.noreply.github.com> Date: Sun, 21 Jan 2024 22:33:32 +0000 Subject: [PATCH] Fix Date Countdown --- index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 5b2e574..eaa2565 100644 --- a/index.html +++ b/index.html @@ -304,7 +304,8 @@ simplyCountdown('.simply-countdown-one', { year: d.getFullYear(), month: d.getMonth(), - day: d.getDate() + day: d.getDate(), + hours: d.getHours() });