diff --git a/src/components/AppLayout/AppLayout.tsx b/src/components/AppLayout/AppLayout.tsx index 7a9717637..0b7a162d7 100644 --- a/src/components/AppLayout/AppLayout.tsx +++ b/src/components/AppLayout/AppLayout.tsx @@ -137,6 +137,8 @@ const AppLayout: React.FC = ({ children }) => { setChannel } = useAppChannel(false); + const isHomepage = location.pathname === "/"; + const menuStructure = createMenuStructure(intl); const configurationMenu = createConfigurationMenu(intl); const userPermissions = user?.userPermissions || []; @@ -216,7 +218,7 @@ const AppLayout: React.FC = ({ children }) => { .includes("mac")} onClick={() => setNavigatorVisibility(true)} /> - {channel && ( + {channel && isHomepage && (