From 90665ed84ac7fa59beca04a5bf2b3c6209d79f77 Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Thu, 9 Apr 2026 16:24:15 -0700 Subject: [PATCH] BlockPartPlaceholder.tsx: space inputs --- .../components/message/fragments-void/BlockPartPlaceholder.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/chat/components/message/fragments-void/BlockPartPlaceholder.tsx b/src/apps/chat/components/message/fragments-void/BlockPartPlaceholder.tsx index 4acc2fa10..d4174f9e5 100644 --- a/src/apps/chat/components/message/fragments-void/BlockPartPlaceholder.tsx +++ b/src/apps/chat/components/message/fragments-void/BlockPartPlaceholder.tsx @@ -258,7 +258,7 @@ function ModelOperationChip(props: { const isError = state === 'error'; const isFinished = isDone || isError; - const iText = iTexts?.join('\n').trimStart() ?? null; + const iText = iTexts?.join('\n\n').trimStart() ?? null; const oText = oTexts?.join('\n') ?? null; const hasDetails = !!iText || !!oText;