From f3008d2e5412b3031de7dc925fdf5ab5fb38d500 Mon Sep 17 00:00:00 2001 From: cpacker Date: Thu, 5 Feb 2026 14:15:38 -0800 Subject: [PATCH] fix: guard empty assistant message bullets from rendering MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 👾 Generated with [Letta Code](https://letta.com) Co-Authored-By: Letta --- src/cli/components/AssistantMessageRich.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/cli/components/AssistantMessageRich.tsx b/src/cli/components/AssistantMessageRich.tsx index 4a5c160..473900a 100644 --- a/src/cli/components/AssistantMessageRich.tsx +++ b/src/cli/components/AssistantMessageRich.tsx @@ -35,6 +35,9 @@ export const AssistantMessage = memo(({ line }: { line: AssistantLine }) => { const contentWidth = Math.max(0, columns - 2); const normalizedText = normalize(line.text); + if (!normalizedText.trim()) { + return null; + } return (