Navigation: Fix showing command palette when menu is docked (#79335)

* fix showing command palette when menu is docked

* separate out command palette
This commit is contained in:
Ashley Harrison 2023-12-11 16:54:56 +00:00 committed by GitHub
parent 2f295dfec9
commit bb4aa16b13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,9 +102,9 @@ export function AppChrome({ children }: Props) {
) : (
<MegaMenu searchBarHidden={searchBarHidden} onClose={() => chrome.setMegaMenuOpen(false)} />
)}
<CommandPalette />
</>
)}
{!state.chromeless && <CommandPalette />}
</div>
);
}