diff --git a/src/data/quick_bar.ts b/src/data/quick_bar.ts index 771f5e3484..ba9d5168bd 100644 --- a/src/data/quick_bar.ts +++ b/src/data/quick_bar.ts @@ -49,7 +49,10 @@ const generateNavigationPanelCommands = ( ): BaseNavigationCommand[] => Object.entries(panels) .filter( - ([panelKey]) => panelKey !== "_my_redirect" && panelKey !== "hassio" + ([panelKey]) => + panelKey !== "_my_redirect" && + panelKey !== "hassio" && + panelKey !== "app" ) .map(([_panelKey, panel]) => { const translationKey = getPanelNameTranslationKey(panel);