From 17d6e62fe5b34b1c635f01f51011f5d84243ca7c Mon Sep 17 00:00:00 2001 From: administrator Date: Tue, 17 Mar 2026 04:53:06 -0700 Subject: [PATCH] style(gateway): fix missing semicolon in probe return statement --- src/gateway/probe.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gateway/probe.ts b/src/gateway/probe.ts index adfe3b2d66b..541fab4d92f 100644 --- a/src/gateway/probe.ts +++ b/src/gateway/probe.ts @@ -47,7 +47,7 @@ export async function probeGateway(opts: { const hostname = new URL(opts.url).hostname; // Local authenticated probes should stay device-bound so read/detail RPCs // are not scope-limited by the shared-auth scope stripping hardening. - return isLoopbackHost(hostname) && opts.auth === undefined // Preserves device identity for empty but present auth objects (e.g. {}); + return isLoopbackHost(hostname) && opts.auth === undefined; // Preserves device identity for empty but present auth objects (e.g. {}) } catch { return false; }