From ce205dc95d8ca1f8ec49f2525e2da13eba1b91a2 Mon Sep 17 00:00:00 2001 From: Pablo Lara Date: Wed, 16 Oct 2024 06:06:37 +0200 Subject: [PATCH] fix: prevent sending default empty string for company name during sign-up --- actions/auth/auth.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/actions/auth/auth.ts b/actions/auth/auth.ts index 394bdf4f3e..2d7852e1e4 100644 --- a/actions/auth/auth.ts +++ b/actions/auth/auth.ts @@ -61,7 +61,6 @@ export const createNewUser = async ( type: "User", attributes: { name: formData.name, - company_name: formData.company, email: formData.email, password: formData.password, },