diff --git a/packages/client/src/pages/Home/Section/Header/index.js b/packages/client/src/pages/Home/Section/Header/index.js index 5ab5ebaf3f..755fc03623 100644 --- a/packages/client/src/pages/Home/Section/Header/index.js +++ b/packages/client/src/pages/Home/Section/Header/index.js @@ -272,7 +272,10 @@ const SectionHeaderContent = (props) => { const isInsideGroup = !!groupId; const isAccountsPage = location.pathname.includes("/accounts"); - const isGroupsPage = location.pathname.includes("/accounts/groups"); + const isGroupsPage = + location.pathname.includes("/accounts/groups") && !isInsideGroup; + + console.log("isGroupsPage", isGroupsPage); const isSettingsPage = location.pathname.includes("/settings");