From 0d3b6d430eace0e542effccdd9deac5bc7dae65d Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Thu, 16 Jul 2026 15:00:49 -0400 Subject: [PATCH] fix(tui): restore expandable tool hover state --- packages/tui/src/routes/session/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tui/src/routes/session/index.tsx b/packages/tui/src/routes/session/index.tsx index 592e0715a90..4835ce247e6 100644 --- a/packages/tui/src/routes/session/index.tsx +++ b/packages/tui/src/routes/session/index.tsx @@ -2279,7 +2279,7 @@ function BlockTool(props: { paddingLeft={2} gap={1} backgroundColor={ - hover() ? themeV2.background.action.secondary() : themeV2.background() + hover() ? themeV2.background.action.secondary("focused") : themeV2.background() } customBorderChars={SplitBorder.customBorderChars} borderColor={themeV2.background()}