fix: Fixes quick type suggestions showing up in iOS for password field

This commit is contained in:
Antonella Sgarlatta
2025-07-28 00:32:51 -03:00
parent fa4182ba9f
commit 9583d0db44

View File

@@ -30,6 +30,8 @@ const DecoratedPasswordInput = forwardRef((props: DecoratedInputProps, ref: Ref<
{...props}
ref={ref}
type={isToggled ? 'text' : 'password'}
autocomplete={false}
spellcheck={false}
right={[...rightSideDecorations, <Toggle isToggled={isToggled} setIsToggled={setIsToggled} />]}
/>
)