autocomplete material ui with controoler of react-hook-form code example
Example: how to turn of autocomplete in react hook form material ui
<TextField
inputRef={input}
{...params}
inputProps={{
...params.inputProps,
autoComplete: "disabled", // disable autocomplete and autofill
}}
margin="none"
fullWidth
/>