react-phone-input-2
react-phone-input-2 copied to clipboard
set autoComplete: 'off' in inputProps, but it does not work
<PhoneInput inputProps={{ name, required: true, autoComplete: 'off', }} I set the autoComplete off in inputProps, but it does not work when i reset the form and work on other fields, the previous phone number will automatically filled, how can i fix it?
Try
inputProps={{
name,
required: true,
autoComplete: 'none',
}}
instead
Pass autocomplete: 'off' in inputProps.