diff --git a/devcon-api/src/controllers/account.ts b/devcon-api/src/controllers/account.ts index 1ba1d71d0..f1f16c8b5 100644 --- a/devcon-api/src/controllers/account.ts +++ b/devcon-api/src/controllers/account.ts @@ -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() } }, })