We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9949dd6 commit 678fe94Copy full SHA for 678fe94
src/components/Countdown.tsx
@@ -49,7 +49,7 @@ export function Countdown() {
49
{timeRemaining.days}
50
</span>
51
<span className="text-3xl pr-3">
52
- {timeRemaining.days > 1 ? "Days" : "Day"}
+ {timeRemaining.days !== 1 ? "Day" : "Days"}
53
54
<span className="text-3xl font-bold font-mono">
55
{timeRemaining.hours.toString().padStart(2, "0")}
0 commit comments