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), ), ],