From 2033e0bd242bb77224cfb32036f95c1f78e14f6c Mon Sep 17 00:00:00 2001 From: Brendan F Date: Sun, 25 Jun 2023 22:45:02 -0700 Subject: Show 6 boxes to match number of guesses --- src/app.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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( - Array.from({ length: 5 }).fill(initialGuess) as GuessType[] + Array.from({ length: 6 }).fill(initialGuess) as GuessType[] ); const [currentTry, setCurrentTry] = React.useState(0); const [selectedSong, setSelectedSong] = React.useState(); -- cgit v1.2.3