Removendo modificação do valor no input email da tela login
This commit is contained in:
parent
b0c82236aa
commit
07c06d2d5f
@ -155,7 +155,7 @@ export default function Home() {
|
|||||||
value={email}
|
value={email}
|
||||||
variant="outlined"
|
variant="outlined"
|
||||||
onKeyDown={(e) => e.key === 'Enter' && field.current.children[0].focus()}
|
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">
|
<FormControl sx={{ m: 1, width: '90%' }} variant="outlined">
|
||||||
<InputLabel htmlFor="outlined-adornment-password">Senha</InputLabel>
|
<InputLabel htmlFor="outlined-adornment-password">Senha</InputLabel>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user