diff --git a/packages/ui/src/components/onboarding/ChooserScreen.tsx b/packages/ui/src/components/onboarding/ChooserScreen.tsx index 754aefc3..f68d7871 100644 --- a/packages/ui/src/components/onboarding/ChooserScreen.tsx +++ b/packages/ui/src/components/onboarding/ChooserScreen.tsx @@ -14,7 +14,6 @@ import { runtimeFetch } from '@/lib/runtime-fetch'; const INSTALL_COMMAND = 'curl -fsSL https://opencode.ai/install | bash'; const DOCS_URL = 'https://opencode.ai/docs'; -const WINDOWS_WSL_DOCS_URL = 'https://opencode.ai/docs/windows-wsl'; const POLL_INTERVAL_MS = 2500; type OnboardingPlatform = 'macos' | 'linux' | 'windows' | 'unknown'; @@ -216,7 +215,7 @@ export function ChooserScreen({ onCliAvailable }: ChooserScreenProps) { } }, []); - const docsUrl = platform === 'windows' ? WINDOWS_WSL_DOCS_URL : DOCS_URL; + const docsUrl = DOCS_URL; const binaryPlaceholder = platform === 'windows' ? 'C:\\Users\\you\\AppData\\Roaming\\npm\\opencode.cmd' @@ -286,7 +285,6 @@ export function ChooserScreen({ onCliAvailable }: ChooserScreenProps) {
{t('onboarding.localSetup.windows.title')}
    -
  1. {t('onboarding.localSetup.windows.stepInstallWsl')} wsl --install {t('onboarding.localSetup.windows.stepInstallWslSuffix')}
  2. {t('onboarding.localSetup.windows.stepRunInstallInWsl')}
  3. {t('onboarding.localSetup.windows.stepSetBinaryPath')}
@@ -418,7 +416,6 @@ export function ChooserScreen({ onCliAvailable }: ChooserScreenProps) {