From 9583d0db44ba315e125fbc36b50a8da527ae3a89 Mon Sep 17 00:00:00 2001 From: Antonella Sgarlatta Date: Mon, 28 Jul 2025 00:32:51 -0300 Subject: [PATCH] fix: Fixes quick type suggestions showing up in iOS for password field --- .../src/javascripts/Components/Input/DecoratedPasswordInput.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/web/src/javascripts/Components/Input/DecoratedPasswordInput.tsx b/packages/web/src/javascripts/Components/Input/DecoratedPasswordInput.tsx index adbc04eb7..38990b0e4 100644 --- a/packages/web/src/javascripts/Components/Input/DecoratedPasswordInput.tsx +++ b/packages/web/src/javascripts/Components/Input/DecoratedPasswordInput.tsx @@ -30,6 +30,8 @@ const DecoratedPasswordInput = forwardRef((props: DecoratedInputProps, ref: Ref< {...props} ref={ref} type={isToggled ? 'text' : 'password'} + autocomplete={false} + spellcheck={false} right={[...rightSideDecorations, ]} /> )