Summary
Remove the "Referral Code" step from the onboarding overlay so users go directly from Welcome → Skills → Context Gathering.
Problem
The referral code step (Step 1 — ReferralApplyStep) adds friction to onboarding. It should be disabled/commented out. The referral feature may return later, so the component file should be preserved but unused.
Solution
Comment out / disable all referral-related logic in the onboarding flow:
app/src/pages/onboarding/Onboarding.tsx — Remove referral prefetch (referralApi.getStats()), skipReferralStep state, resolveOnboardingStep helper, referral-related navigation logic, and case 1 render branch. Simplify step numbering: Welcome (0) → Skills (1) → Context Gathering (2).
app/src/pages/onboarding/steps/ReferralApplyStep.tsx — Keep file (unused), no changes needed.
- Referral API (
referralApi) stays untouched since it's used elsewhere (e.g. Rewards page).
Acceptance criteria
Related
app/src/pages/onboarding/Onboarding.tsx
app/src/pages/onboarding/steps/ReferralApplyStep.tsx
Summary
Remove the "Referral Code" step from the onboarding overlay so users go directly from Welcome → Skills → Context Gathering.
Problem
The referral code step (Step 1 —
ReferralApplyStep) adds friction to onboarding. It should be disabled/commented out. The referral feature may return later, so the component file should be preserved but unused.Solution
Comment out / disable all referral-related logic in the onboarding flow:
app/src/pages/onboarding/Onboarding.tsx— Remove referral prefetch (referralApi.getStats()),skipReferralStepstate,resolveOnboardingStephelper, referral-related navigation logic, andcase 1render branch. Simplify step numbering: Welcome (0) → Skills (1) → Context Gathering (2).app/src/pages/onboarding/steps/ReferralApplyStep.tsx— Keep file (unused), no changes needed.referralApi) stays untouched since it's used elsewhere (e.g. Rewards page).Acceptance criteria
ReferralApplyStep.tsxfile preserved but not imported inOnboarding.tsxyarn typecheck,yarn lint,yarn format:check,yarn buildall passRelated
app/src/pages/onboarding/Onboarding.tsxapp/src/pages/onboarding/steps/ReferralApplyStep.tsx