diff --git a/lib/ui/notification.ts b/lib/ui/notification.ts index 80f9f87..baacf53 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 {