Slight tweak

This commit is contained in:
Imran Remtulla
2023-09-10 23:28:37 -04:00
parent 13de0437b8
commit fdb6eed6d0

View File

@@ -916,7 +916,7 @@ class AppsProvider with ChangeNotifier {
} }
} }
notifyListeners(); notifyListeners();
await exportApps(isAuto: true); exportApps(isAuto: true);
} }
Future<void> removeApps(List<String> appIds) async { Future<void> removeApps(List<String> appIds) async {
@@ -938,7 +938,7 @@ class AppsProvider with ChangeNotifier {
} }
if (appIds.isNotEmpty) { if (appIds.isNotEmpty) {
notifyListeners(); notifyListeners();
await exportApps(isAuto: true); exportApps(isAuto: true);
} }
} }