The current implementation of the regex only allowed for lowercase letters in the email. This worked over in mpdx-react because the libraries we use(yup and formik), automatically lowercased the whole email upon validation/submission. This isn't necessarily an issue considering emails are not case sensitive, but from a user experience standpoint, we don't want to force lowercasing their whole email address.
The current implementation of the regex only allowed for lowercase letters in the email. This worked over in
mpdx-react
because the libraries we use(yup and formik), automatically lowercased the whole email upon validation/submission. This isn't necessarily an issue considering emails are not case sensitive, but from a user experience standpoint, we don't want to force lowercasing their whole email address.