diff options
| author | Brendan F <EpicWolverine@users.noreply.github.com> | 2023-06-25 22:45:02 -0700 |
|---|---|---|
| committer | Brendan F <EpicWolverine@users.noreply.github.com> | 2023-06-25 22:45:02 -0700 |
| commit | 2033e0bd242bb77224cfb32036f95c1f78e14f6c (patch) | |
| tree | 7f287175d9dc91653cf09f04596e8f5aab88cb83 /src/app.tsx | |
| parent | b4038eb0d0452e5e1e544b77231d6d119367c3f5 (diff) | |
Show 6 boxes to match number of guesses
Diffstat (limited to 'src/app.tsx')
| -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>(); |
