From 3795d5b29253d4b8d7a0adbab457c7317c40f3c6 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Sun, 6 Sep 2026 19:37:59 -0400 Subject: [PATCH] refac --- src/lib/components/chat/Messages/OutputEditView.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/chat/Messages/OutputEditView.svelte b/src/lib/components/chat/Messages/OutputEditView.svelte index 4ea762f30e..9cf5531306 100644 --- a/src/lib/components/chat/Messages/OutputEditView.svelte +++ b/src/lib/components/chat/Messages/OutputEditView.svelte @@ -140,7 +140,7 @@ return (item.content ?? []) .filter((p: any) => p && (p.type === 'output_text' || 'text' in p)) .map((p: any) => p.text ?? '') - .join('\n'); + .join(''); } function updateMessageText(idx: number, text: string) {