diff --git a/webview-ui/src/components/ChatRow.tsx b/webview-ui/src/components/ChatRow.tsx index 90b7d93..a197db1 100644 --- a/webview-ui/src/components/ChatRow.tsx +++ b/webview-ui/src/components/ChatRow.tsx @@ -411,7 +411,7 @@ const ChatRow: React.FC = ({ } return { command: text.slice(0, outputIndex).trim(), - output: text.slice(outputIndex + COMMAND_OUTPUT_STRING.length).trimStart(), + output: text.slice(outputIndex + COMMAND_OUTPUT_STRING.length).trim() + " ", } }