diff options
| author | Brendan F <EpicWolverine@users.noreply.github.com> | 2023-05-14 23:40:13 -0700 |
|---|---|---|
| committer | Brendan F <EpicWolverine@users.noreply.github.com> | 2023-05-14 23:40:13 -0700 |
| commit | a57a3262ace1ae1a15ce7b7ed9dc1ab757f60c28 (patch) | |
| tree | 17dc021859d3cb3a52c62d2ab69e85119c779cd8 /src | |
| parent | 1f98794d0effbab6e58cd6d959e18d26019222e9 (diff) | |
Fix grammar
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/Result/index.tsx | 14 |
1 files changed, 6 insertions, 8 deletions
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({ <> <Styled.ResultTitle>{textForTry[currentTry - 1]}</Styled.ResultTitle> <Styled.SongTitle> - Todays song is {todaysSolution.artist} -{" "} - {todaysSolution.name} + Today's song is {todaysSolution.artist} - {todaysSolution.name} </Styled.SongTitle> <Styled.Tries> - You guessed it in {currentTry} {currentTry === 1 ? 'try' : 'tries'} + You guessed it in {currentTry} {currentTry === 1 ? 'try' : 'tries'}. </Styled.Tries> <YouTube id={todaysSolution.youtubeId} /> <Button onClick={copyResult} variant="green"> Copy results </Button> <Styled.TimeToNext> - Remember to come back in {hoursToNextDay}{" "} hours! + Remember to come back in {hoursToNextDay} hours! </Styled.TimeToNext> </> ); } else { return ( <> - <Styled.ResultTitle>Unfortunately, thats wrong</Styled.ResultTitle> + <Styled.ResultTitle>Unfortunately, thats wrong.</Styled.ResultTitle> <Styled.SongTitle> - Todays song is {todaysSolution.artist} -{" "} - {todaysSolution.name} + Today's song is {todaysSolution.artist} - {todaysSolution.name} </Styled.SongTitle> <YouTube id={todaysSolution.youtubeId} /> <Button onClick={copyResult} variant="red"> Copy results </Button> <Styled.TimeToNext> - Try again in {hoursToNextDay}{" "} hours + Try again in {hoursToNextDay} hours. </Styled.TimeToNext> </> ); |
