diff --git a/res/index.html b/res/index.html index ee83a53..f7ca542 100644 --- a/res/index.html +++ b/res/index.html @@ -151,7 +151,7 @@ const hours = hoursUntil(d); if (hours > 24) timeText.innerHTML = `${daysUntil(d)} DAY(S) REMAINING`; - else if (hours > 0) timeText.innerHTML = `${hours} HOURS(S) REMAINING`; + else if (hours > 0) timeText.innerHTML = `${hours} HOUR(S) REMAINING`; else if (hours > -3) timeText.innerHTML = "RIGHT NOW"; else timeText.innerText = "FINISHED"; };