diff --git a/lib/presentation/widgets/player_selection.dart b/lib/presentation/widgets/player_selection.dart index ca3566a..ec5ac15 100644 --- a/lib/presentation/widgets/player_selection.dart +++ b/lib/presentation/widgets/player_selection.dart @@ -252,6 +252,9 @@ class _PlayerSelectionState extends State { ), ) .toList(); + suggestedPlayers = suggestedPlayers + .where((p) => !selectedPlayers.any((sp) => sp.id == p.id)) + .toList(); } } else { // Otherwise, use the loaded players from the database.