From abfe98bdcec65af8f37e29ea4a287bc33297f976 Mon Sep 17 00:00:00 2001 From: mawkone Date: Mon, 8 Jun 2026 11:24:09 -0700 Subject: [PATCH] design: swap order of onboarding steps so design-style selection happens before idea brain-dump --- .../_onboarding/onboarding-entrepreneur.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/vibn-frontend/_onboarding/onboarding-entrepreneur.tsx b/vibn-frontend/_onboarding/onboarding-entrepreneur.tsx index 5d2f7cf4..2b5bb83b 100644 --- a/vibn-frontend/_onboarding/onboarding-entrepreneur.tsx +++ b/vibn-frontend/_onboarding/onboarding-entrepreneur.tsx @@ -18,7 +18,7 @@ import { // Entrepreneur path — 4 steps. Each step is a focused question. const ENTREP_TOTAL = 4; -const ENTREP_STEP_NAMES = ["Type", "Idea", "Style", "Look"]; +const ENTREP_STEP_NAMES = ["Type", "Style", "Idea", "Look"]; const IDEA_PROMPTS = [ "A community for indie game devs to swap playtesters, with weekly demo nights", @@ -404,14 +404,6 @@ export function EntrepreneurPath({ ); canNext = !!data.productType; } else if (step === 1) { - body = ( - onUpdate({ idea: v })} - /> - ); - canNext = (data.idea || "").trim().length >= 8; - } else if (step === 2) { body = ( ); canNext = !!data.designStyle; + } else if (step === 2) { + body = ( + onUpdate({ idea: v })} + /> + ); + canNext = (data.idea || "").trim().length >= 8; } else { body = ( onUpdate({ vibe: v })} />