fix bash tool extra line

This commit is contained in:
Dax Raad 2025-06-30 15:31:30 -04:00
parent 03664ba588
commit 9ebad68274

View file

@ -362,7 +362,7 @@ func renderToolDetails(
stdout := metadata.ExtraFields["stdout"]
if stdout != nil {
command := toolArgsMap["command"].(string)
body = fmt.Sprintf("```console\n> %s\n%s\n```", command, stdout)
body = fmt.Sprintf("```console\n> %s\n%s```", command, stdout)
body = toMarkdown(body, width, t.BackgroundPanel())
}
case "webfetch":