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);