From 551168fcd46e36d8c4d3839560c97914fc3576fe Mon Sep 17 00:00:00 2001 From: Daniel Smolsky Date: Thu, 25 Dec 2025 22:21:01 -0500 Subject: [PATCH] simplify distillation notification format with plain dividers --- lib/ui/notification.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ui/notification.ts b/lib/ui/notification.ts index 80f9f871..baacf53a 100644 --- a/lib/ui/notification.ts +++ b/lib/ui/notification.ts @@ -78,8 +78,8 @@ export async function sendUnifiedNotification( function formatDistillationMessage(distillation: Record): string { const lines: string[] = ["▣ DCP | Extracted Distillation"] - for (const [id, findings] of Object.entries(distillation)) { - lines.push(`\n─── ID ${id} ───`) + for (const findings of Object.values(distillation)) { + lines.push(`\n───`) if (typeof findings === "object" && findings !== null) { lines.push(JSON.stringify(findings, null, 2)) } else {