From 0ba192af125aff288dca6cba13857dddf33e3eb8 Mon Sep 17 00:00:00 2001 From: David Crespo Date: Thu, 31 Oct 2024 11:39:11 -0500 Subject: [PATCH] tell password managers to stop trying to fill name field --- app/components/form/fields/NameField.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/components/form/fields/NameField.tsx b/app/components/form/fields/NameField.tsx index b369f4db9..7f3100c97 100644 --- a/app/components/form/fields/NameField.tsx +++ b/app/components/form/fields/NameField.tsx @@ -36,6 +36,11 @@ export function NameField< .replace(/[\s_]+/g, '-') .replace(/[^a-z0-9-]/g, '') } + // https://www.stefanjudis.com/snippets/turn-off-password-managers/ + data-1p-ignore + data-bwignore + data-lpignore="true" + data-form-type="other" {...textFieldProps} /> )