chore: fix extra space

Kujtim Hoxha created

Change summary

internal/tui/components/chat/messages/renderer.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

internal/tui/components/chat/messages/renderer.go 🔗

@@ -650,7 +650,7 @@ func joinHeaderBody(header, body string) string {
 		return header
 	}
 	body = t.S().Base.PaddingLeft(2).Render(body)
-	return lipgloss.JoinVertical(lipgloss.Left, header, "", body, "")
+	return lipgloss.JoinVertical(lipgloss.Left, header, "", body)
 }
 
 func renderPlainContent(v *toolCallCmp, content string) string {