Small corrections

This commit is contained in:
2026-03-07 21:57:51 +01:00
parent 0822039a5f
commit 27c6d8b293
2 changed files with 8 additions and 8 deletions

View File

@@ -43,9 +43,9 @@ class _MatchTileState extends State<MatchTile> {
@override
Widget build(BuildContext context) {
final match = widget.match;
final group = widget.match.group;
final winner = widget.match.winner;
final players = [...widget.match.players]
final group = match.group;
final winner = match.winner;
final players = [...match.players]
..sort((a, b) => a.name.compareTo(b.name));
final loc = AppLocalizations.of(context);