MVP #141

Merged
flixcoo merged 705 commits from development into main 2026-01-09 12:55:50 +00:00
Showing only changes of commit 7eb25221d7 - Show all commits

View File

@@ -122,9 +122,11 @@ class _MatchViewState extends State<MatchView> {
final loadedMatches = results[0] as List<Match>;
matches = loadedMatches
..sort((a, b) => b.createdAt.compareTo(a.createdAt));
setState(() {
isLoading = false;
});
if (mounted) {
setState(() {
isLoading = false;
});
}
});
}
}