From a57a3262ace1ae1a15ce7b7ed9dc1ab757f60c28 Mon Sep 17 00:00:00 2001 From: Brendan F Date: Sun, 14 May 2023 23:40:13 -0700 Subject: Fix grammar --- src/components/Result/index.tsx | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'src/components') diff --git a/src/components/Result/index.tsx b/src/components/Result/index.tsx index b85094e..9fc7861 100644 --- a/src/components/Result/index.tsx +++ b/src/components/Result/index.tsx @@ -40,35 +40,33 @@ export function Result({ <> {textForTry[currentTry - 1]} - Todays song is {todaysSolution.artist} -{" "} - {todaysSolution.name} + Today's song is {todaysSolution.artist} - {todaysSolution.name} - You guessed it in {currentTry} {currentTry === 1 ? 'try' : 'tries'} + You guessed it in {currentTry} {currentTry === 1 ? 'try' : 'tries'}. - Remember to come back in {hoursToNextDay}{" "} hours! + Remember to come back in {hoursToNextDay} hours! ); } else { return ( <> - Unfortunately, thats wrong + Unfortunately, thats wrong. - Todays song is {todaysSolution.artist} -{" "} - {todaysSolution.name} + Today's song is {todaysSolution.artist} - {todaysSolution.name} - Try again in {hoursToNextDay}{" "} hours + Try again in {hoursToNextDay} hours. ); -- cgit v1.2.3