convert email to lower case when loging in

I had an issue signing in to my dashboard only to find out it was because the first letter of my email was in caps.
This commit is contained in:
cirlorm
2024-12-29 17:46:44 +00:00
committed by GitHub
parent ba45b27608
commit 5d2d4104f0

View File

@@ -81,7 +81,7 @@ export default function Home({ IS_CLOUD }: Props) {
const onSubmit = async (values: Login) => {
await mutateAsync({
email: values.email,
email: values.email.toLowerCase(),
password: values.password,
})
.then((data) => {