Skip to content

Commit 551168f

Browse files
committed
simplify distillation notification format with plain dividers
1 parent ae0415c commit 551168f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/ui/notification.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ export async function sendUnifiedNotification(
7878
function formatDistillationMessage(distillation: Record<string, any>): string {
7979
const lines: string[] = ["▣ DCP | Extracted Distillation"]
8080

81-
for (const [id, findings] of Object.entries(distillation)) {
82-
lines.push(`\n─── ID ${id} ───`)
81+
for (const findings of Object.values(distillation)) {
82+
lines.push(`\n───`)
8383
if (typeof findings === "object" && findings !== null) {
8484
lines.push(JSON.stringify(findings, null, 2))
8585
} else {

0 commit comments

Comments
 (0)