mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 04:11:10 -05:00
Fix command output trim
This commit is contained in:
@@ -411,7 +411,7 @@ const ChatRow: React.FC<ChatRowProps> = ({
|
||||
}
|
||||
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() + " ",
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user