This commit is contained in:
2025-11-26 23:50:05 +00:00
parent 11d70a2d33
commit 8a6b6bec99

View File

@@ -151,7 +151,7 @@
const hours = hoursUntil(d);
if (hours > 24) timeText.innerHTML = `<span class="c">${daysUntil(d)} DAY(S)</span> <span class="t">REMAINING</span>`;
else if (hours > 0) timeText.innerHTML = `<span class="c">${hours} HOURS(S)</span> <span class="t">REMAINING</span>`;
else if (hours > 0) timeText.innerHTML = `<span class="c">${hours} HOUR(S)</span> <span class="t">REMAINING</span>`;
else if (hours > -3) timeText.innerHTML = "RIGHT NOW";
else timeText.innerText = "FINISHED";
};