Skip to content

Commit e6401dd

Browse files
committed
fix(blocks): add burn rate label
1 parent 1fa9531 commit e6401dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/_blocks.live.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,8 +262,8 @@ function renderLiveDisplay(terminal: TerminalManager, block: SessionBlock, confi
262262
? (burnRate.tokensPerMinute > 1000 ? pc.red('⚡ HIGH') : burnRate.tokensPerMinute > 500 ? pc.yellow('⚡ MODERATE') : pc.green('✓ NORMAL'))
263263
: '';
264264
const rateDisplay = burnRate != null
265-
? `${Math.round(burnRate.tokensPerMinute)} per min ${rateIndicator}`
266-
: 'N/A';
265+
? `Burn Rate: ${Math.round(burnRate.tokensPerMinute)} per min ${rateIndicator}`
266+
: 'Burn Rate: N/A';
267267

268268
// Usage section
269269
const usageLabel = pc.bold('🔥 USAGE');

0 commit comments

Comments
 (0)