fix error messages
All checks were successful
Pull Request Pipeline / lint (pull_request) Successful in 2m15s
Pull Request Pipeline / test (pull_request) Successful in 2m14s

This commit is contained in:
gelbeinhalb
2025-11-27 17:25:58 +01:00
parent 8c005d6e5e
commit a29123c964

View File

@@ -63,7 +63,7 @@ class _GameHistoryViewState extends State<GameHistoryView> {
return const Center(
heightFactor: 4,
child: Text(
'Error while loading recent games.',
'Error while loading games.',
),
);
}
@@ -71,7 +71,7 @@ class _GameHistoryViewState extends State<GameHistoryView> {
(!snapshot.hasData || snapshot.data!.isEmpty)) {
return const Center(
heightFactor: 4,
child: Text('No recent games available.'),
child: Text('No games available.'),
);
}