prevent 1password fill (#183)

This commit is contained in:
aleka
2023-12-04 11:06:49 -05:00
committed by GitHub
parent 941ef7f9dd
commit 9188e08a4f
+2
View File
@@ -129,6 +129,7 @@ export const Input = forwardRef<HTMLInputElement, InputProps>(
placeholder={placeholder}
value={value}
// Other
data-1p-ignore // prevent 1Password fill
{...otherProps}
/>
) : (
@@ -168,6 +169,7 @@ export const Input = forwardRef<HTMLInputElement, InputProps>(
value={formattedValue}
autoComplete="off"
autoCorrect="off"
data-1p-ignore // prevent 1Password fill
{...otherProps}
/>
)}