I am trying to implement the Autocomplete component into my project but am getting the autofill/autocomplete from the browser after some time. Do you know how I can set it t
Even with the latest:
"@material-ui/core"
"@material-ui/lab"
which contains the autoComplete property set to 'off', I wasn't able to get the autofill box go away.
Also tried setting the attribute on the form tag
To no avail.
The thing which resolved the issue was setting the autoComplete field to 'new-password'
input.onChange(val)}
renderInput={(params) => {
params.inputProps.autoComplete = 'new-password';
return
}}
/>