diff --git a/vibn-frontend/_onboarding/onboarding-entrepreneur.tsx b/vibn-frontend/_onboarding/onboarding-entrepreneur.tsx index ecff26f..398a3f5 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 = ["Idea", "Type", "Goal", "Look"]; +const ENTREP_STEP_NAMES = ["Type", "Idea", "Goal", "Look"]; const IDEA_PROMPTS = [ "A community for indie game devs to swap playtesters, with weekly demo nights", @@ -363,14 +363,6 @@ export function EntrepreneurPath({ canNext, onSkip = null; if (step === 0) { - body = ( - onUpdate({ idea: v })} - /> - ); - canNext = (data.idea || "").trim().length >= 8; - } else if (step === 1) { body = ( ); canNext = !!data.productType; + } else if (step === 1) { + body = ( + onUpdate({ idea: v })} + /> + ); + canNext = (data.idea || "").trim().length >= 8; } else if (step === 2) { body = ( onUpdate({ goal: v })} />