From a29123c964cd9c95f22456e7ba987cce6987091f Mon Sep 17 00:00:00 2001 From: gelbeinhalb Date: Thu, 27 Nov 2025 17:25:58 +0100 Subject: [PATCH] fix error messages --- lib/presentation/views/main_menu/game_history_view.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.'), ); }