From 4dceeb2e7f44e43d49474b10f14117c5b3876651 Mon Sep 17 00:00:00 2001 From: Fork Less Date: Wed, 24 Jun 2026 18:18:19 +0200 Subject: [PATCH] fix: point frontend WS to wss://excalidraw.forkless.com --- frontend/src/App.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 75cc79c..1f67366 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -435,8 +435,7 @@ function App(): JSX.Element { return } - const protocol = window.location.protocol === 'https:' ? 'wss:' : 'ws:' - const wsUrl = `${protocol}//${window.location.host}` + const wsUrl = 'wss://excalidraw.forkless.com' websocketRef.current = new WebSocket(wsUrl)