Skip to content

Commit 678fe94

Browse files
authored
Update Countdown.tsx
1 parent 9949dd6 commit 678fe94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Countdown.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export function Countdown() {
4949
{timeRemaining.days}
5050
</span>
5151
<span className="text-3xl pr-3">
52-
{timeRemaining.days > 1 ? "Days" : "Day"}
52+
{timeRemaining.days !== 1 ? "Day" : "Days"}
5353
</span>
5454
<span className="text-3xl font-bold font-mono">
5555
{timeRemaining.hours.toString().padStart(2, "0")}

0 commit comments

Comments
 (0)