From 4173163963ac9fa0d155b628e18fa0619653c31e Mon Sep 17 00:00:00 2001 From: elishadavidi <62501723+elishadavidi@users.noreply.github.com> Date: Thu, 28 May 2026 18:14:44 +0300 Subject: [PATCH] Update group formatting --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index cf7f8f8..aab096f 100644 --- a/index.js +++ b/index.js @@ -44,7 +44,7 @@ function formatBatch(queue) { const parts = []; for (const [group, msgs] of Object.entries(groups)) { - parts.push(`[${group}]`); + parts.push(`[👥 ${group} 👥]`); for (const m of msgs) { parts.push(`${m.sender}: ${m.text}`); }