From 9188e08a4f7c90aa284547b93d19eeadf1c73968 Mon Sep 17 00:00:00 2001 From: aleka Date: Mon, 4 Dec 2023 11:06:49 -0500 Subject: [PATCH] prevent 1password fill (#183) --- src/components/Input.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/Input.tsx b/src/components/Input.tsx index 107e559..b74e4f8 100644 --- a/src/components/Input.tsx +++ b/src/components/Input.tsx @@ -129,6 +129,7 @@ export const Input = forwardRef( placeholder={placeholder} value={value} // Other + data-1p-ignore // prevent 1Password fill {...otherProps} /> ) : ( @@ -168,6 +169,7 @@ export const Input = forwardRef( value={formattedValue} autoComplete="off" autoCorrect="off" + data-1p-ignore // prevent 1Password fill {...otherProps} /> )}