Skip to content

Commit 477a20f

Browse files
authored
Merge pull request #143 from Opencode-DCP/refactor/simplify-pruning-label
Simplify pruning notification label
2 parents 5208401 + bc3c270 commit 477a20f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ui/notification.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function buildDetailedMessage(
4545
if (pruneToolIds.length > 0) {
4646
const pruneTokenCounterStr = `~${formatTokenCount(state.stats.pruneTokenCounter)}`
4747
const reasonLabel = reason ? ` — ${PRUNE_REASON_LABELS[reason]}` : ''
48-
message += `\n\n▣ Pruned tools (${pruneTokenCounterStr})${reasonLabel}`
48+
message += `\n\n▣ Pruning (${pruneTokenCounterStr})${reasonLabel}`
4949

5050
const itemLines = formatPrunedItemsList(pruneToolIds, toolMetadata, workingDirectory)
5151
message += '\n' + itemLines.join('\n')

0 commit comments

Comments
 (0)