From b7b941c354dc619bf135c31c81d1c7f85d96aa6a Mon Sep 17 00:00:00 2001 From: Kit Langton Date: Fri, 10 Jul 2026 12:29:09 -0400 Subject: [PATCH] fix(tui): unify pending tool styling (#36278) --- packages/tui/src/routes/session/index.tsx | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/packages/tui/src/routes/session/index.tsx b/packages/tui/src/routes/session/index.tsx index 917e605605..9f71e3e943 100644 --- a/packages/tui/src/routes/session/index.tsx +++ b/packages/tui/src/routes/session/index.tsx @@ -2042,8 +2042,7 @@ function InlineTool(props: { if (permission()) return theme.warning if (failed()) return theme.error if (hover() && props.onClick) return theme.text - if (props.complete) return theme.textMuted - return theme.text + return theme.textMuted }) return ( @@ -2103,13 +2102,7 @@ export function InlineToolRow(props: { - ~ {props.pending} - + {props.pending} } when={props.complete || props.failed} >