diff --git a/lib/presentation/widgets/tiles/match_tile.dart b/lib/presentation/widgets/tiles/match_tile.dart index 543a542..e89be2f 100644 --- a/lib/presentation/widgets/tiles/match_tile.dart +++ b/lib/presentation/widgets/tiles/match_tile.dart @@ -175,6 +175,8 @@ class _MatchTileState extends State { } } + allPlayers.sort((a, b) => a.name.compareTo(b.name)); return allPlayers; + ; } }