I tried all solutions suggested by community. But none of them is working in 2021. Tried
autoComplete ="off",
autoComplete ="nope"
autoComplete={'' + Math.random()}
Does anyone have a new solution? This is the input component I'm using
<input
autoComplete={'' + Math.random()}
key={name}
value={value}
onChange={onChange}
className="input--custom"
id={name}
name={name}
type={type}
/>
It is an open bug in the Chromium project, on which Chrome is based.
Also from MDN:
Note: In most modern browsers, setting autocomplete to "off" will not prevent a password manager from asking the user if they would like to save username and password information, or from automatically filling in those values in a site's login form.