mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
Merge pull request #1020 from champ3oy/patch-1
convert email to lower case when loging in
This commit is contained in:
@@ -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) => {
|
||||
|
||||
Reference in New Issue
Block a user