From 7faf80de0326758d7d09cf7aa9a00f16fc35cdd8 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 18 Jan 2026 00:14:45 +0100 Subject: [PATCH] Updated extra player count --- .../views/main_menu/match_view/match_profile_view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/presentation/views/main_menu/match_view/match_profile_view.dart b/lib/presentation/views/main_menu/match_view/match_profile_view.dart index 7c18f11..11f7bd9 100644 --- a/lib/presentation/views/main_menu/match_view/match_profile_view.dart +++ b/lib/presentation/views/main_menu/match_view/match_profile_view.dart @@ -144,7 +144,7 @@ class _MatchProfileViewState extends State { const Icon(Icons.group), const SizedBox(width: 8), Text( - '${widget.match.group!.name} ${extraPlayersCount > 0 ? '+ $extraPlayersCount' : ''}', + '${widget.match.group!.name} ${widget.match.players != null ? '+ ${widget.match.players!.length}' : ''}', style: const TextStyle(fontWeight: FontWeight.bold), ), ],