fix: remove console.log

This commit is contained in:
NFish 2024-10-18 14:32:43 +08:00
parent 097486f96b
commit eb83336bc9

View File

@ -51,7 +51,6 @@ const NormalForm = () => {
}
const features = await getSystemFeatures()
const allFeatures = { ...defaultSystemFeatures, ...features }
console.log('🚀 ~ init ~ allFeatures:', allFeatures)
setSystemFeatures(allFeatures)
setAllMethodsAreDisabled(!allFeatures.enable_social_oauth_login && !allFeatures.enable_email_code_login && !allFeatures.enable_email_password_login && !allFeatures.sso_enforced_for_signin)
setShowORLine((allFeatures.enable_social_oauth_login || allFeatures.sso_enforced_for_signin) && (allFeatures.enable_email_code_login || allFeatures.enable_email_password_login))