chore : bump all packages versions

This commit is contained in:
GuillaumeSD
2024-12-29 00:01:08 +01:00
parent 2db361e2f6
commit 0b8d0ad780
10 changed files with 2112 additions and 1149 deletions

View File

@@ -24,7 +24,7 @@ export default function GameRecap() {
if (game.isInsufficientMaterial()) return "Draw by insufficient material";
if (game.isStalemate()) return "Draw by stalemate";
if (game.isThreefoldRepetition()) return "Draw by threefold repetition";
if (game.isDraw()) "Draw by fifty-move rule";
if (game.isDraw()) return "Draw by fifty-move rule";
return "You resigned";
};