From 4be5c58c94daa8973d48ac32a8535fd33edff109 Mon Sep 17 00:00:00 2001 From: spiceoogway Date: Fri, 30 Jan 2026 10:54:16 -0500 Subject: [PATCH] chore: fix formatting --- src/gateway/protocol/client-info.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/gateway/protocol/client-info.ts b/src/gateway/protocol/client-info.ts index d7d9189da..1f9a48d48 100644 --- a/src/gateway/protocol/client-info.ts +++ b/src/gateway/protocol/client-info.ts @@ -66,9 +66,7 @@ export type GatewayClientInfo = { instanceId?: string; }; -const GATEWAY_CLIENT_ID_SET = new Set( - Object.values(ALL_GATEWAY_CLIENT_IDS), -); +const GATEWAY_CLIENT_ID_SET = new Set(Object.values(ALL_GATEWAY_CLIENT_IDS)); const GATEWAY_CLIENT_MODE_SET = new Set(Object.values(GATEWAY_CLIENT_MODES)); export function normalizeGatewayClientId(raw?: string | null): GatewayClientId | undefined {