You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current regex for email validation allows invalid TLDs. Example, [email protected] passes the validation, but single-character TLDs are invalid.
This creates an issue in our code, because our server side validation fails in that case, whereas we want the failure to happen in the client, when the user could have a more friendly experience.
The text was updated successfully, but these errors were encountered:
The current regex for email validation allows invalid TLDs. Example, [email protected] passes the validation, but single-character TLDs are invalid.
This creates an issue in our code, because our server side validation fails in that case, whereas we want the failure to happen in the client, when the user could have a more friendly experience.
The text was updated successfully, but these errors were encountered: