From bc3c270a445e3a4cfbe27e823462745653dc599a Mon Sep 17 00:00:00 2001 From: Daniel Smolsky Date: Mon, 15 Dec 2025 18:06:59 -0500 Subject: [PATCH] Simplify pruning notification label --- lib/ui/notification.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/notification.ts b/lib/ui/notification.ts index 06b370ed..c63b6129 100644 --- a/lib/ui/notification.ts +++ b/lib/ui/notification.ts @@ -45,7 +45,7 @@ function buildDetailedMessage( if (pruneToolIds.length > 0) { const pruneTokenCounterStr = `~${formatTokenCount(state.stats.pruneTokenCounter)}` const reasonLabel = reason ? ` — ${PRUNE_REASON_LABELS[reason]}` : '' - message += `\n\n▣ Pruned tools (${pruneTokenCounterStr})${reasonLabel}` + message += `\n\n▣ Pruning (${pruneTokenCounterStr})${reasonLabel}` const itemLines = formatPrunedItemsList(pruneToolIds, toolMetadata, workingDirectory) message += '\n' + itemLines.join('\n')