Skip to content

Commit

Permalink
email casing
Browse files Browse the repository at this point in the history
  • Loading branch information
wslyvh committed Oct 31, 2024
1 parent 7e44ee0 commit 78cd259
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devcon-api/src/controllers/account.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ async function LoginEmail(req: Request, res: Response) {
return res.status(400).send({ code: 400, message: 'Invalid input.' })
}

address = address.toLowerCase()
address = address
let data = await client.verificationToken.findFirst({
where: { identifier: address, nonce: nonce, expires: { gt: new Date() } },
})
Expand Down

0 comments on commit 78cd259

Please sign in to comment.