From 3c638b02bacd325c793d35d929d3565f34c08692 Mon Sep 17 00:00:00 2001 From: Tam Nhu Tran Date: Wed, 25 Mar 2026 22:55:29 -0400 Subject: [PATCH] style(channels): format official token guard for ci parity --- src/channels/official-channels-store.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/channels/official-channels-store.ts b/src/channels/official-channels-store.ts index 0c8cbc98..7e99e573 100644 --- a/src/channels/official-channels-store.ts +++ b/src/channels/official-channels-store.ts @@ -296,9 +296,7 @@ export function setConfiguredOfficialChannelToken( throw new Error(`${envKey} cannot be empty or multiline.`); } if (normalized.length > MAX_OFFICIAL_CHANNEL_TOKEN_LENGTH) { - throw new Error( - `${envKey} cannot exceed ${MAX_OFFICIAL_CHANNEL_TOKEN_LENGTH} characters.` - ); + throw new Error(`${envKey} cannot exceed ${MAX_OFFICIAL_CHANNEL_TOKEN_LENGTH} characters.`); } const envPath = getOfficialChannelEnvPath(channelId);