Skip to content

Commit

Permalink
fix:Launchpad update prohibits deleting app list
Browse files Browse the repository at this point in the history
  • Loading branch information
wushuangs committed Sep 9, 2024
1 parent 466eaa2 commit 146e33c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/frontend/src/stores/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,12 @@ export const isSystemApp = (id: string): boolean => {
rid.startsWith('vault') ||
rid.startsWith('settings') ||
rid.startsWith('appstore') ||
rid.startsWith('console')
rid.startsWith('console') ||
rid.startsWith('market') ||
rid.startsWith('profile') ||
rid.startsWith('dashboard') ||
rid.startsWith('wise') ||
rid.startsWith('control-hub')
) {
return true;
}
Expand Down

0 comments on commit 146e33c

Please sign in to comment.