Bugfix/login failure due email capitalisation (#1884)
* convert the email to lowercase this code will prevent the email check from failing if the user email contain capitalisation. * Updated Readme to contain warning. * Revert "Updated Readme to contain warning." This reverts commit c406587c73c07c613d1c8091bfdd17bd691b00e8. Co-authored-by: Bailey Pumfleet <pumfleet@hey.com>
This commit is contained in:
parent
c9fb82a7e6
commit
3d685eb4ae
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ export default function Login({
|
||||||
)}
|
)}
|
||||||
{isSAMLLoginEnabled && (
|
{isSAMLLoginEnabled && (
|
||||||
<SAMLLogin
|
<SAMLLogin
|
||||||
email={form.getValues("email")}
|
email={form.getValues("email").toLowerCase()}
|
||||||
samlTenantID={samlTenantID}
|
samlTenantID={samlTenantID}
|
||||||
samlProductID={samlProductID}
|
samlProductID={samlProductID}
|
||||||
hostedCal={hostedCal}
|
hostedCal={hostedCal}
|
||||||
|
|
Loading…
Reference in a new issue