From 90894301c1770c81c79b46c71ae362fa227a3a30 Mon Sep 17 00:00:00 2001 From: Matthew Jackson Date: Fri, 6 Mar 2026 18:36:27 -0800 Subject: [PATCH] =?UTF-8?q?Fix=20Telegram=20rendering=20=E2=80=94=20no=20l?= =?UTF-8?q?eading=20spaces=20on=20breakdown=20lines?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- status.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/status.mjs b/status.mjs index db8bfc8..544add6 100644 --- a/status.mjs +++ b/status.mjs @@ -256,7 +256,7 @@ function formatReport(s) { if (sorted.length > 0) { lines.push(`• Ready to apply: ${q.new}`); for (const [type, count] of sorted) { - lines.push(` → ${typeNames[type] || type}: ${count}`); + lines.push(`→ ${typeNames[type] || type}: ${count}`); } } else { lines.push(`• Ready to apply: ${q.new}`);