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;