From 41192792c65c1bfc00786bf7c8a7cdd0aaae7b60 Mon Sep 17 00:00:00 2001 From: Fabian Schindler Date: Wed, 8 Jul 2026 09:58:22 +0200 Subject: [PATCH] fix: Update countdown message to handle singular/plural days --- src/components/MicroCountdownTimer/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/MicroCountdownTimer/index.js b/src/components/MicroCountdownTimer/index.js index 844f31e..9fecca1 100644 --- a/src/components/MicroCountdownTimer/index.js +++ b/src/components/MicroCountdownTimer/index.js @@ -32,7 +32,9 @@ const MicroCountdownTimer = () => { return

VOTE NOW!!

; } - return

{timeLeft.days} day till hackweek

; + return

+ {timeLeft.days} {timeLeft.days === 1 ? "day" : "days"} till hackweek +

}; export default MicroCountdownTimer;