This commit is contained in:
Rory Powell 2023-02-28 13:37:34 +00:00
parent 7ed0586673
commit 7b48c2787e
1 changed files with 2 additions and 4 deletions

View File

@ -146,9 +146,7 @@ async function verifySettingsConfig(config: SettingsInnerConfig) {
if (config.isSSOEnforced) {
const valid = await hasActivatedConfig()
if (!valid) {
throw new Error(
"Cannot enforce SSO without an activated configuration"
)
throw new Error("Cannot enforce SSO without an activated configuration")
}
}
}