From 948ef639ff58e6b8a0468a465778c61e471a02a4 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 18 Oct 2025 05:12:48 +0000 Subject: [PATCH] Prettier format pending files --- client/components/onboarding/PersonalInfo.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/client/components/onboarding/PersonalInfo.tsx b/client/components/onboarding/PersonalInfo.tsx index b7aeedd3..4b4f3768 100644 --- a/client/components/onboarding/PersonalInfo.tsx +++ b/client/components/onboarding/PersonalInfo.tsx @@ -63,7 +63,8 @@ export default function PersonalInfo({ if (!user) { try { setSubmitting(true); - const fullName = `${data.personalInfo.firstName} ${data.personalInfo.lastName}`.trim(); + const fullName = + `${data.personalInfo.firstName} ${data.personalInfo.lastName}`.trim(); const userTypeMap: Record = { "game-developer": "game_developer", client: "client", @@ -76,7 +77,8 @@ export default function PersonalInfo({ { full_name: fullName, user_type: userTypeMap[data.userType || "member"] as any, - username: data.personalInfo.firstName.replace(/\s+/g, "_") || "user", + username: + data.personalInfo.firstName.replace(/\s+/g, "_") || "user", } as any, ); } catch (e) {