show the terminal view

This commit is contained in:
Arjun 2026-05-06 19:11:00 +05:30
parent a18f5dc3dd
commit d515c423ee
2 changed files with 35 additions and 3 deletions

View file

@ -2111,7 +2111,7 @@ function App() {
return next
})
if (event.toolCallId) {
if (event.toolCallId && event.toolName !== 'executeCommand') {
setToolOpenForTab(activeChatTabIdRef.current, event.toolCallId, false)
}
@ -4361,7 +4361,7 @@ function App() {
state={toToolState(item.status)}
/>
<ToolContent>
{item.streamingOutput && item.status === 'running' ? (
{item.streamingOutput ? (
<AutoScrollPre className="max-h-80 overflow-auto px-4 py-3 font-mono text-xs whitespace-pre-wrap text-foreground/90">
<TerminalOutput raw={item.streamingOutput} />
</AutoScrollPre>