* prefetch sso providers in settings

* hide sso enforcement in standard plan
This commit is contained in:
Philipinho
2025-03-08 18:26:34 +00:00
parent fd36076ae7
commit 5c9e0a2630
3 changed files with 21 additions and 11 deletions

View File

@ -35,17 +35,15 @@ export default function Security() {
Single sign-on (SSO)
</Title>
<EnforceSso />
<Divider my="lg" />
{!isCloud() && hasLicenseKey ? <CreateSsoProvider /> : ""}
{/*TODO: revisit when we add a second plan
<CreateSsoProvider />
*/}
<Divider size={0} my="lg" />
{/*TODO: revisit when we add a second plan */}
{!isCloud() && hasLicenseKey ? (
<>
<EnforceSso />
<Divider my="lg" />
<CreateSsoProvider />
<Divider size={0} my="lg" />
</>
) : null}
<SsoProviderList />
</>