diff --git a/lib/features/categories/ui/widgets/category_selection_modal_content.dart b/lib/features/categories/ui/widgets/category_selection_modal_content.dart index a9874e0fb..1293dd1bb 100644 --- a/lib/features/categories/ui/widgets/category_selection_modal_content.dart +++ b/lib/features/categories/ui/widgets/category_selection_modal_content.dart @@ -63,11 +63,13 @@ class CategorySelectionModalContentState ) .toList(); - final favoriteCategories = - categories.where((category) => category.favorite ?? false).toList(); + final favoriteCategories = filteredCategories + .where((category) => category.favorite ?? false) + .toList(); - final otherCategories = - categories.where((category) => !(category.favorite ?? false)).toList(); + final otherCategories = filteredCategories + .where((category) => !(category.favorite ?? false)) + .toList(); return Column( mainAxisSize: MainAxisSize.min, diff --git a/pubspec.yaml b/pubspec.yaml index 25cebf5a5..f40b341c9 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: lotti description: Achieve your goals and keep your data private with Lotti. publish_to: 'none' -version: 0.9.571+2894 +version: 0.9.571+2895 msix_config: display_name: LottiApp