From c33b3d827887d6b03c21ef975c2585a7b0d53045 Mon Sep 17 00:00:00 2001 From: Simon <10131203+gaomeng1900@users.noreply.github.com> Date: Wed, 11 Mar 2026 23:38:57 +0800 Subject: [PATCH] fix(ui): remove unnecessary tags --- packages/ui/src/panel/cards.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/ui/src/panel/cards.ts b/packages/ui/src/panel/cards.ts index 45ae0ca..0df52c2 100644 --- a/packages/ui/src/panel/cards.ts +++ b/packages/ui/src/panel/cards.ts @@ -40,13 +40,13 @@ export function createReflectionLines(reflection: { }): string[] { const lines: string[] = [] if (reflection.evaluation_previous_goal) { - lines.push(`
🔍 ${reflection.evaluation_previous_goal}
`) + lines.push(`🔍 ${reflection.evaluation_previous_goal}`) } if (reflection.memory) { - lines.push(`
💾 ${reflection.memory}
`) + lines.push(`💾 ${reflection.memory}`) } if (reflection.next_goal) { - lines.push(`
🎯 ${reflection.next_goal}
`) + lines.push(`🎯 ${reflection.next_goal}`) } return lines }