diff options
| author | Brendan F <EpicWolverine@users.noreply.github.com> | 2023-06-25 17:14:20 -0700 |
|---|---|---|
| committer | Brendan F <EpicWolverine@users.noreply.github.com> | 2023-06-25 17:14:20 -0700 |
| commit | 3ecbe70fa70b187a03b727fd21b1fb36d46442d1 (patch) | |
| tree | c43090ebb9cd9b90e1c169750f658411bd660d71 /src/components/Result | |
| parent | 1d89c9d43f05aa09b6449882bfcd9a5810438f49 (diff) | |
Fix lint issues
Diffstat (limited to 'src/components/Result')
| -rw-r--r-- | src/components/Result/index.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Result/index.tsx b/src/components/Result/index.tsx index 9fc7861..4aadbc6 100644 --- a/src/components/Result/index.tsx +++ b/src/components/Result/index.tsx @@ -40,7 +40,7 @@ export function Result({ <> <Styled.ResultTitle>{textForTry[currentTry - 1]}</Styled.ResultTitle> <Styled.SongTitle> - Today's 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'}. @@ -59,7 +59,7 @@ export function Result({ <> <Styled.ResultTitle>Unfortunately, thats wrong.</Styled.ResultTitle> <Styled.SongTitle> - Today's 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"> |
