From f7bb47bf64157b4369763e73f600dc59d5c84fce Mon Sep 17 00:00:00 2001 From: Tyler Longwell Date: Mon, 30 Mar 2026 11:07:02 -0400 Subject: [PATCH] fix(claw): use bg-background-primary so tool call boxes are visible Tool call boxes use bg-background-secondary for contrast. The active agent view was also using bg-background-secondary as its page background, making them invisible. Switch to bg-background-primary to match the regular chat view. --- ui/desktop/src/components/ActiveAgentView.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/desktop/src/components/ActiveAgentView.tsx b/ui/desktop/src/components/ActiveAgentView.tsx index 0302e25717..3719528199 100644 --- a/ui/desktop/src/components/ActiveAgentView.tsx +++ b/ui/desktop/src/components/ActiveAgentView.tsx @@ -101,7 +101,7 @@ function ActiveAgentChat({ ); return ( -
+
{messages.length === 0 && chatState === ChatState.Idle ? ( @@ -209,7 +209,7 @@ export default function ActiveAgentView({ if (state === 'loading') { return ( -
+

Waking up the active agent...

@@ -218,7 +218,7 @@ export default function ActiveAgentView({ if (state === 'error') { return ( -
+

Could not connect to the active agent.

{errorMsg && (

{errorMsg}