diff --git a/frontend/pages/admin/IntegrationsPage/IntegrationsPage.tsx b/frontend/pages/admin/IntegrationsPage/IntegrationsPage.tsx index bc757eec74..942ebb4996 100644 --- a/frontend/pages/admin/IntegrationsPage/IntegrationsPage.tsx +++ b/frontend/pages/admin/IntegrationsPage/IntegrationsPage.tsx @@ -33,7 +33,11 @@ const IntegrationsPage = ({ const { renderFlash } = useContext(NotificationContext); const { isPremiumTier } = useContext(AppContext); - const { section, subsection } = params; + let { section } = params; + const { subsection } = params; + if (!section && !!subsection) { + section = "sso"; + } const [isUpdatingSettings, setIsUpdatingSettings] = useState(false); // // // settings that live under the integrations page diff --git a/frontend/pages/admin/IntegrationsPage/cards/IdentityProviders/components/EndUserAuthSection/EndUserAuthSection.tsx b/frontend/pages/admin/IntegrationsPage/cards/IdentityProviders/components/EndUserAuthSection/EndUserAuthSection.tsx index 65c8012df2..601b39e923 100644 --- a/frontend/pages/admin/IntegrationsPage/cards/IdentityProviders/components/EndUserAuthSection/EndUserAuthSection.tsx +++ b/frontend/pages/admin/IntegrationsPage/cards/IdentityProviders/components/EndUserAuthSection/EndUserAuthSection.tsx @@ -202,10 +202,6 @@ const EndUserAuthSection = ({ ); }; - if (!config?.mdm.apple_bm_enabled_and_configured) { - return null; - } - return
{renderContent()}
; }; diff --git a/frontend/router/index.tsx b/frontend/router/index.tsx index 2ddd5aee4a..176493d95b 100644 --- a/frontend/router/index.tsx +++ b/frontend/router/index.tsx @@ -202,6 +202,10 @@ const routes = ( path="integrations/:section" component={AdminIntegrationsPage} /> +