diff --git a/lib/presentation/views/main_menu/game_history_view.dart b/lib/presentation/views/main_menu/game_history_view.dart index f6f47ef..b5813cf 100644 --- a/lib/presentation/views/main_menu/game_history_view.dart +++ b/lib/presentation/views/main_menu/game_history_view.dart @@ -63,7 +63,7 @@ class _GameHistoryViewState extends State { return const Center( heightFactor: 4, child: Text( - 'Error while loading recent games.', + 'Error while loading games.', ), ); } @@ -71,7 +71,7 @@ class _GameHistoryViewState extends State { (!snapshot.hasData || snapshot.data!.isEmpty)) { return const Center( heightFactor: 4, - child: Text('No recent games available.'), + child: Text('No games available.'), ); }