MVP #141

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

View File

@@ -119,11 +119,11 @@ class _MatchViewState extends State<MatchView> {
db.matchDao.getAllMatches(),
Future.delayed(minimumSkeletonDuration),
]).then((results) {
if (mounted) {
setState(() {
final loadedMatches = results[0] as List<Match>;
matches = loadedMatches
..sort((a, b) => b.createdAt.compareTo(a.createdAt));
if (mounted) {
setState(() {
isLoading = false;
});
}