Skip to content

Commit 59cf96a

Browse files
authored
Merge pull request #206 from Opencode-DCP/fix/simplify-distillation-ui
simplify distillation notification UI
2 parents ae0415c + 551168f commit 59cf96a

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)