fix: Fixes quick type suggestions showing up in iOS for password field
This commit is contained in:
@@ -30,6 +30,8 @@ const DecoratedPasswordInput = forwardRef((props: DecoratedInputProps, ref: Ref<
|
|||||||
{...props}
|
{...props}
|
||||||
ref={ref}
|
ref={ref}
|
||||||
type={isToggled ? 'text' : 'password'}
|
type={isToggled ? 'text' : 'password'}
|
||||||
|
autocomplete={false}
|
||||||
|
spellcheck={false}
|
||||||
right={[...rightSideDecorations, <Toggle isToggled={isToggled} setIsToggled={setIsToggled} />]}
|
right={[...rightSideDecorations, <Toggle isToggled={isToggled} setIsToggled={setIsToggled} />]}
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user