From bcd8b3e6955d4ac6b089df13e26a63c20666ab38 Mon Sep 17 00:00:00 2001 From: klopez4212 Date: Thu, 25 Jun 2026 16:16:17 +0100 Subject: [PATCH] Honor fallback runtime on persona start --- desktop/src/features/profile/ui/UserProfilePanel.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/desktop/src/features/profile/ui/UserProfilePanel.tsx b/desktop/src/features/profile/ui/UserProfilePanel.tsx index 97b5ea865..98bad227a 100644 --- a/desktop/src/features/profile/ui/UserProfilePanel.tsx +++ b/desktop/src/features/profile/ui/UserProfilePanel.tsx @@ -365,7 +365,7 @@ export function UserProfilePanel({ candidate.availability === "available", ); const defaultRuntime = runtimes[0] ?? null; - const { runtime, warnings } = resolvePersonaRuntime( + const { runtime, warnings, isOverridden } = resolvePersonaRuntime( personaToStart.runtime, runtimes, defaultRuntime, @@ -382,6 +382,7 @@ export function UserProfilePanel({ name: personaToStart.displayName, acpCommand: "buzz-acp", agentCommand: runtime.command, + harnessOverride: isOverridden, agentArgs: runtime.defaultArgs, mcpCommand: runtime.mcpCommand ?? "", personaId: personaToStart.id, @@ -809,7 +810,6 @@ export function UserProfilePanel({ {view === "info" ? ( ) : null} - {view === "model" ? (