From 579b00503f5145036664f10680054543f4154e56 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 11 Jan 2026 04:08:26 +0100 Subject: [PATCH] style: format onboard providers --- src/commands/onboard-providers.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/commands/onboard-providers.ts b/src/commands/onboard-providers.ts index be7d93635..28465d74e 100644 --- a/src/commands/onboard-providers.ts +++ b/src/commands/onboard-providers.ts @@ -492,7 +492,11 @@ function parseTelegramAllowFromEntries(raw: string): { const match = part.match(/^(telegram|tg):(.+)$/i); const value = match ? match[2]?.trim() : part; if (!value) { - return { entries: [], hasUsernames: false, error: `Invalid entry: ${part}` }; + return { + entries: [], + hasUsernames: false, + error: `Invalid entry: ${part}`, + }; } if (/^\d+$/.test(value)) { entries.push(part);