diff --git a/src/App.tsx b/src/App.tsx index 4206964..00b3a7d 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -174,6 +174,10 @@ function App() { playNote(noteValue, octave); } + const waitingForGuess = + gameState === GameState.WaitingForGuess || + gameState === GameState.NotStarted; + return ( <>
@@ -186,22 +190,13 @@ function App() {
Score: {countOfCorrectGuesses}
diff --git a/src/components/StaveNote.tsx b/src/components/StaveNote.tsx index 745ae3e..3f97065 100644 --- a/src/components/StaveNote.tsx +++ b/src/components/StaveNote.tsx @@ -89,7 +89,7 @@ function draw({ .setLine(11) .setFont( '-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif', - 12, + 10, 400 );