We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ae0415c + 551168f commit 59cf96aCopy full SHA for 59cf96a
lib/ui/notification.ts
@@ -78,8 +78,8 @@ export async function sendUnifiedNotification(
78
function formatDistillationMessage(distillation: Record<string, any>): string {
79
const lines: string[] = ["▣ DCP | Extracted Distillation"]
80
81
- for (const [id, findings] of Object.entries(distillation)) {
82
- lines.push(`\n─── ID ${id} ───`)
+ for (const findings of Object.values(distillation)) {
+ lines.push(`\n───`)
83
if (typeof findings === "object" && findings !== null) {
84
lines.push(JSON.stringify(findings, null, 2))
85
} else {
0 commit comments