Fix Telegram rendering — no leading spaces on breakdown lines

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-06 18:36:27 -08:00
parent 0922489c6c
commit 90894301c1

View File

@@ -256,7 +256,7 @@ function formatReport(s) {
if (sorted.length > 0) { if (sorted.length > 0) {
lines.push(`• Ready to apply: ${q.new}`); lines.push(`• Ready to apply: ${q.new}`);
for (const [type, count] of sorted) { for (const [type, count] of sorted) {
lines.push(` ${typeNames[type] || type}: ${count}`); lines.push(`${typeNames[type] || type}: ${count}`);
} }
} else { } else {
lines.push(`• Ready to apply: ${q.new}`); lines.push(`• Ready to apply: ${q.new}`);