From e37e9df0d1c115d71181c1ce6f7e4239805bd838 Mon Sep 17 00:00:00 2001 From: Lucas Stellet Date: Fri, 20 Mar 2026 19:01:52 -0300 Subject: [PATCH] =?UTF-8?q?fix:=20address=20greptile=20review=20=E2=80=94?= =?UTF-8?q?=20add=20pi=5Flocal=20to=20effectiveAdapterCommand=20and=20adap?= =?UTF-8?q?terLabels?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- ui/src/components/OnboardingWizard.tsx | 2 ++ ui/src/pages/InviteLanding.tsx | 1 + 2 files changed, 3 insertions(+) diff --git a/ui/src/components/OnboardingWizard.tsx b/ui/src/components/OnboardingWizard.tsx index 2ecfd3cfc..8d4c3a170 100644 --- a/ui/src/components/OnboardingWizard.tsx +++ b/ui/src/components/OnboardingWizard.tsx @@ -203,6 +203,8 @@ export function OnboardingWizard() { ? "codex" : adapterType === "gemini_local" ? "gemini" + : adapterType === "pi_local" + ? "pi" : adapterType === "cursor" ? "agent" : adapterType === "opencode_local" diff --git a/ui/src/pages/InviteLanding.tsx b/ui/src/pages/InviteLanding.tsx index 41b339c96..e288babee 100644 --- a/ui/src/pages/InviteLanding.tsx +++ b/ui/src/pages/InviteLanding.tsx @@ -17,6 +17,7 @@ const adapterLabels: Record = { codex_local: "Codex (local)", gemini_local: "Gemini CLI (local)", opencode_local: "OpenCode (local)", + pi_local: "Pi (local)", openclaw_gateway: "OpenClaw Gateway", cursor: "Cursor (local)", process: "Process",