MVP #141

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

View File

@@ -105,7 +105,11 @@ class _GroupsViewState extends State<GroupsView> {
groups = loadedGroups
..sort((a, b) => b.createdAt.compareTo(a.createdAt));
});
isLoading = false;
if (mounted) {
setState(() {
isLoading = false;
});
}
});
}
}