From ba3d1c66f091ab25c9d2be9e4cebc070e1fd7076 Mon Sep 17 00:00:00 2001 From: henrygd Date: Fri, 9 Jan 2026 15:12:06 -0500 Subject: [PATCH] refactor(auth): rename honeypot field to avoid autofill (#1011) --- internal/site/src/components/login/auth-form.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/internal/site/src/components/login/auth-form.tsx b/internal/site/src/components/login/auth-form.tsx index ad2ab91f..c0e1c987 100644 --- a/internal/site/src/components/login/auth-form.tsx +++ b/internal/site/src/components/login/auth-form.tsx @@ -25,13 +25,13 @@ const passwordSchema = v.pipe( ) const LoginSchema = v.looseObject({ - name: honeypot, + company_website: honeypot, email: emailSchema, password: passwordSchema, }) const RegisterSchema = v.looseObject({ - name: honeypot, + company_website: honeypot, email: emailSchema, password: passwordSchema, passwordConfirm: passwordSchema, @@ -248,8 +248,8 @@ export function UserAuthForm({ )}
{/* honeypot */} - - + +