fix: Prevents quick type suggestions on iOS for password input

This commit is contained in:
Antonella Sgarlatta
2025-07-31 14:24:27 -03:00
parent c75f655ffe
commit ff80775cd6

View File

@@ -75,6 +75,8 @@ const DecoratedInput = forwardRef(
<input
autoComplete={autocomplete ? 'on' : 'off'}
autoCorrect={autocomplete ? 'on' : 'off'}
autoCapitalize={autocomplete ? 'on' : 'off'}
autoFocus={autofocus}
className={`${computedClassNames.input} ${disabled ? computedClassNames.disabled : ''} ${className?.input}`}
data-lpignore={type !== 'password' ? true : false}