From cbb7375c19ee824a2ef54213d816c82ef024bf3a Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 18 Oct 2025 22:20:00 +0000 Subject: [PATCH] Update user type labels in PersonalInfo and Welcome to new realm names cgen-97dd4231dfd645f089d3784efe41fdbc --- client/components/onboarding/PersonalInfo.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/components/onboarding/PersonalInfo.tsx b/client/components/onboarding/PersonalInfo.tsx index 4b4f3768..4dc802b2 100644 --- a/client/components/onboarding/PersonalInfo.tsx +++ b/client/components/onboarding/PersonalInfo.tsx @@ -46,13 +46,13 @@ export default function PersonalInfo({ const getUserTypeLabel = () => { switch (data.userType) { case "game-developer": - return "Game Developer"; + return "Game Development"; case "client": - return "Client"; + return "Consulting"; case "member": - return "Community Member"; + return "Community"; case "customer": - return "Customer"; + return "Get Started"; default: return "User"; }