More UI feedback when app updated (#814)

This commit is contained in:
Imran Remtulla
2023-08-28 19:51:49 -04:00
parent 075ecae540
commit 551643b11c
2 changed files with 9 additions and 0 deletions

View File

@@ -689,6 +689,10 @@ class AppsPageState extends State<AppsPage> {
.catchError((e) {
showError(e, context);
return <String>[];
}).then((value) {
if (shouldInstallUpdates) {
showError(tr('appsUpdated'), context);
}
});
}
});