Skip to content

Commit 8389dfe

Browse files
committed
Lint update: Forgot to run yarn format
1 parent a26cd5b commit 8389dfe

File tree

1 file changed

+3
-1
lines changed
  • workspaces/simon-game/src/app/components

1 file changed

+3
-1
lines changed

workspaces/simon-game/src/app/components/App.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ type GameState = "pre-game" | "game-over" | "player-turn" | "cpu-turn";
99
export function App() {
1010
const [playerMoves, setPlayerMoves] = useState<readonly number[]>([]);
1111
const [gameState, setGameState] = useState<GameState>("pre-game");
12-
const [_correctMoves, _setCorrectMoves] = useState<readonly number[]>([0,1,2,3]);
12+
const [_correctMoves, _setCorrectMoves] = useState<readonly number[]>([
13+
0, 1, 2, 3,
14+
]);
1315

1416
if (gameState === "pre-game") {
1517
return (

0 commit comments

Comments
 (0)