Removendo modificação do valor no input email da tela login

This commit is contained in:
marcio1002 2024-01-30 10:20:09 -03:00
parent b0c82236aa
commit 07c06d2d5f

View File

@ -155,7 +155,7 @@ export default function Home() {
value={email}
variant="outlined"
onKeyDown={(e) => e.key === 'Enter' && field.current.children[0].focus()}
onChange={(value) => setEmail(value.target.value.toLowerCase())}
onChange={(value) => setEmail(value.target.value.trim())}
/>
<FormControl sx={{ m: 1, width: '90%' }} variant="outlined">
<InputLabel htmlFor="outlined-adornment-password">Senha</InputLabel>