fix: SAML 403 message (#8221)

This commit is contained in:
Alejandro Bailo
2025-07-09 08:10:14 +02:00
committed by GitHub
parent 89c67079a3
commit 49ca3ca325
+1 -2
View File
@@ -210,8 +210,7 @@ export const initiateSamlAuth = async (email: string) => {
if (response.status === 403) {
return {
success: false,
error:
"Domain is not authorized for SAML authentication or SAML certificates are missing.",
error: "Domain is not authorized for SAML authentication.",
};
}