From 411fdf3114fd17e603a4e2ab6746450fb9e3feab Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 14 Jan 2026 17:33:57 +0200 Subject: [PATCH] chore(client-standalone): disable WS error notification --- apps/client/src/services/ws.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/services/ws.ts b/apps/client/src/services/ws.ts index 488000ba1..963e2e33b 100644 --- a/apps/client/src/services/ws.ts +++ b/apps/client/src/services/ws.ts @@ -304,7 +304,7 @@ async function sendPing() { } setTimeout(() => { - if (glob.device === "print") return; + if (glob.device === "print" || glob.isStandalone) return; ws = connectWebSocket();