diff --git a/src-web/components/core/PlainInput.tsx b/src-web/components/core/PlainInput.tsx index a91a3eca..991e1b4a 100644 --- a/src-web/components/core/PlainInput.tsx +++ b/src-web/components/core/PlainInput.tsx @@ -128,6 +128,9 @@ export const PlainInput = forwardRef(function type={type === 'password' && !obscured ? 'text' : type} defaultValue={defaultValue} placeholder={placeholder} + autoComplete="off" + autoCapitalize="off" + autoCorrect="off" onChange={(e) => handleChange(e.target.value)} onPaste={(e) => onPaste?.(e.clipboardData.getData('Text'))} className={inputClassName}