From 00b7ab7db78d3bcf717697df62639c08d1006c45 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 14 Feb 2026 21:08:43 +0100 Subject: [PATCH] fix(gateway): remove unused device auth import --- src/gateway/client.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/gateway/client.ts b/src/gateway/client.ts index 8aab8c7db54..3494c363c97 100644 --- a/src/gateway/client.ts +++ b/src/gateway/client.ts @@ -1,11 +1,7 @@ import { randomUUID } from "node:crypto"; import { WebSocket, type ClientOptions, type CertMeta } from "ws"; import type { DeviceIdentity } from "../infra/device-identity.js"; -import { - clearDeviceAuthToken, - loadDeviceAuthToken, - storeDeviceAuthToken, -} from "../infra/device-auth-store.js"; +import { loadDeviceAuthToken, storeDeviceAuthToken } from "../infra/device-auth-store.js"; import { loadOrCreateDeviceIdentity, publicKeyRawBase64UrlFromPem,