diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/app.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app.tsx b/src/app.tsx index 26aa7bc..d7f5917 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -20,7 +20,7 @@ function App() { } as GuessType; const [guesses, setGuesses] = React.useState<GuessType[]>( - Array.from({ length: 5 }).fill(initialGuess) as GuessType[] + Array.from({ length: 6 }).fill(initialGuess) as GuessType[] ); const [currentTry, setCurrentTry] = React.useState<number>(0); const [selectedSong, setSelectedSong] = React.useState<Song>(); |
