From f76a7ef40832fc6ced71448c1d9de6913988509c Mon Sep 17 00:00:00 2001
From: Dotta
Date: Thu, 12 Mar 2026 08:54:27 -0500
Subject: [PATCH] Fix onboarding manual debug JSX
---
ui/src/components/OnboardingWizard.tsx | 53 +++++++++-----------------
1 file changed, 17 insertions(+), 36 deletions(-)
diff --git a/ui/src/components/OnboardingWizard.tsx b/ui/src/components/OnboardingWizard.tsx
index 4aa967e2b2..9e92de0ffc 100644
--- a/ui/src/components/OnboardingWizard.tsx
+++ b/ui/src/components/OnboardingWizard.tsx
@@ -1049,46 +1049,27 @@ export function OnboardingWizard() {
? "GEMINI_API_KEY"
: "OPENAI_API_KEY"}
{" "}
- in
- env or run{" "}
+ in env or run{" "}
- Respond with hello.
-
-
- {adapterType === "cursor" ||
- adapterType === "codex_local" ||
- adapterType === "gemini_local" ||
- adapterType === "opencode_local" ? (
-
- If auth fails, set{" "}
-
- {adapterType === "cursor"
- ? "CURSOR_API_KEY"
- : adapterType === "gemini_local"
- ? "GEMINI_API_KEY"
- : "OPENAI_API_KEY"}
- {" "}
- in env or run{" "}
-
- {adapterType === "cursor"
- ? "agent login"
- : adapterType === "codex_local"
+ {adapterType === "cursor"
+ ? "agent login"
+ : adapterType === "codex_local"
? "codex login"
: adapterType === "gemini_local"
? "gemini auth"
- : "opencode auth login"}
-
- .
-
- ) : (
-
- If login is required, run{" "}
- claude login{" "}
- and retry.
-
- )}
-
- )}
+ : "opencode auth login"}
+
+ .
+
+ ) : (
+
+ If login is required, run{" "}
+ claude login{" "}
+ and retry.
+
+ )}
+
+ )}
)}