Fixed bug with no popup shown

This commit is contained in:
2025-07-21 13:05:22 +02:00
parent 9aaba18858
commit afa52488b0
4 changed files with 6 additions and 4 deletions

View File

@@ -69,7 +69,8 @@ class GameManager extends ChangeNotifier {
gameList[index].roundNumber--;
gameList[index].isGameFinished = true;
notifyListeners();
gameList[index].setWinner();
gameList[index].notifyListeners();
LocalStorageService.saveGameSessions();
}
}