Navigation: Fix command palette toggle removal (#62809)

command palette is always here
This commit is contained in:
Ashley Harrison
2023-02-02 16:32:34 +00:00
committed by GitHub
parent d19803a0f0
commit 5795553353

View File

@@ -72,7 +72,7 @@ export function AppChrome({ children }: Props) {
</div>
<div className={contentClass}>{children}</div>
<MegaMenu searchBarHidden={searchBarHidden} onClose={() => chrome.setMegaMenu(false)} />
{featureToggles.commandPalette && <CommandPalette />}
<CommandPalette />
{!featureToggles.topNavCommandPalette && <SearchWrapper />}
</main>
);