From 057dd67100b6f093d3131732e8ac563ba0818072 Mon Sep 17 00:00:00 2001 From: Meng Zhang Date: Tue, 5 Dec 2023 22:52:57 +0800 Subject: [PATCH] fix: clean up testing default values --- ee/tabby-ui/app/auth/components/user-auth-form.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ee/tabby-ui/app/auth/components/user-auth-form.tsx b/ee/tabby-ui/app/auth/components/user-auth-form.tsx index 912dc65..65df08e 100644 --- a/ee/tabby-ui/app/auth/components/user-auth-form.tsx +++ b/ee/tabby-ui/app/auth/components/user-auth-form.tsx @@ -43,9 +43,9 @@ export function UserAuthForm({ className, invitationCode, ...props }: UserAuthFo const form = useForm>({ resolver: zodResolver(formSchema), defaultValues: { - email: "a@a.com", - password1: "a@a.comacom", - password2: "a@a.comacom", + email: "", + password1: "", + password2: "", invitationCode, } })