diff --git a/client/state/global-sidebar/selectors.ts b/client/state/global-sidebar/selectors.ts index a8428bd8af636..45494c4aaaa2b 100644 --- a/client/state/global-sidebar/selectors.ts +++ b/client/state/global-sidebar/selectors.ts @@ -51,11 +51,13 @@ export const getShouldShowCollapsedGlobalSidebar = ( sectionGroup: string, sectionName: string ) => { + const isAllowedRegion = sectionGroup === 'sites-dashboard' || sectionGroup === 'sites'; const siteSelected = sectionGroup === 'sites-dashboard' && !! siteId; const siteLoaded = getShouldShowGlobalSiteSidebar( state, siteId, sectionGroup, sectionName ); return ( isEnabled( 'layout/dotcom-nav-redesign-v2' ) && + isAllowedRegion && ( siteSelected || siteLoaded || isWithinBreakpoint( '<782px' ) ) ); };