Deleted print

This commit is contained in:
2025-07-03 17:34:12 +02:00
parent 4f2f2c8d3c
commit 1c2803eb85
2 changed files with 1 additions and 2 deletions

View File

@@ -37,7 +37,6 @@ class GameSession extends ChangeNotifier {
playerScores = List.filled(players.length, 0); playerScores = List.filled(players.length, 0);
var uuid = const Uuid(); var uuid = const Uuid();
id = uuid.v1(); id = uuid.v1();
print('GameSession created with ID: $id');
} }
@override @override

View File

@@ -68,7 +68,7 @@ class AppLocalizationsEn extends AppLocalizations {
@override @override
String delete_game_message(String gameTitle) { String delete_game_message(String gameTitle) {
return 'Are you sure you want to delete the game $gameTitle? This action cannot be undone.'; return 'Are you sure you want to delete the game \"$gameTitle\"? This action cannot be undone.';
} }
@override @override