Make email addresses case-insensitive so that we don't get duplicate accounts. Emails like test@example.com and Test@example.com should attempt to log the user into the same account. However, when storing an email in an account, we should preserve the case of the email.
Make email addresses case-insensitive so that we don't get duplicate accounts. Emails like
test@example.com
andTest@example.com
should attempt to log the user into the same account. However, when storing an email in an account, we should preserve the case of the email.