From 2cef9368ea232aa32810ec00cd1429836d235b8a Mon Sep 17 00:00:00 2001
From: Dustin Healy <54083382+dustinhealy@users.noreply.github.com>
Date: Wed, 4 Feb 2026 13:57:25 +0100
Subject: [PATCH] =?UTF-8?q?=F0=9F=91=86=20fix:=20Web=20Search=20and=20Code?=
=?UTF-8?q?=20Interpreter=20Toggle=20Cursor=20Hover=20Behavior=20(#11614)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
client/src/components/SidePanel/Agents/Code/Action.tsx | 6 +++++-
client/src/components/SidePanel/Agents/Search/Action.tsx | 6 +++++-
2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/client/src/components/SidePanel/Agents/Code/Action.tsx b/client/src/components/SidePanel/Agents/Code/Action.tsx
index 5d943f0a60..6919ab1339 100644
--- a/client/src/components/SidePanel/Agents/Code/Action.tsx
+++ b/client/src/components/SidePanel/Agents/Code/Action.tsx
@@ -14,6 +14,7 @@ import type { AgentForm } from '~/common';
import { useLocalize, useCodeApiKeyForm } from '~/hooks';
import ApiKeyDialog from './ApiKeyDialog';
import { ESide } from '~/common';
+import { cn } from '~/utils';
export default function Action({ authType = '', isToolAuthenticated = false }) {
const localize = useLocalize();
@@ -73,7 +74,10 @@ export default function Action({ authType = '', isToolAuthenticated = false }) {
diff --git a/client/src/components/SidePanel/Agents/Search/Action.tsx b/client/src/components/SidePanel/Agents/Search/Action.tsx
index d71d0878fa..79019e28b7 100644
--- a/client/src/components/SidePanel/Agents/Search/Action.tsx
+++ b/client/src/components/SidePanel/Agents/Search/Action.tsx
@@ -14,6 +14,7 @@ import type { AgentForm } from '~/common';
import { useLocalize, useSearchApiKeyForm } from '~/hooks';
import ApiKeyDialog from './ApiKeyDialog';
import { ESide } from '~/common';
+import { cn } from '~/utils';
export default function Action({
authTypes = [],
@@ -81,7 +82,10 @@ export default function Action({