From 7a611a7badf7a57ee600e9ee63d191dcfec901b2 Mon Sep 17 00:00:00 2001 From: Ben Senescu <44480372+bensenescu@users.noreply.github.com> Date: Tue, 25 Aug 2026 20:49:46 -0400 Subject: [PATCH] Reorder onboarding source options by observed frequency, add Instagram (#533) --- src/client/features/onboarding/onboardingModel.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/client/features/onboarding/onboardingModel.ts b/src/client/features/onboarding/onboardingModel.ts index 9882ae1..7babe0c 100644 --- a/src/client/features/onboarding/onboardingModel.ts +++ b/src/client/features/onboarding/onboardingModel.ts @@ -31,21 +31,21 @@ export const CLIENT_WEBSITE_COUNT_OPTIONS = [ "25+", ] as const; +// Ordered by how often each source is actually reported (Aug 2026 answers). export const SOURCE_OPTIONS = [ - "Product Hunt", "Google", - "Reddit", - "X / Twitter", "GitHub", - "AI (Claude, ChatGPT, etc)", + "Product Hunt", "Friend or colleague", + "X / Twitter", + "Instagram", + "AI (Claude, ChatGPT, etc)", "Other", ] as const; // Keep the mobile list short: these still count as known options, they just // aren't shown on small screens. export const SOURCE_OPTIONS_HIDDEN_ON_MOBILE = [ - "Reddit", "X / Twitter", "AI (Claude, ChatGPT, etc)", ] as const;