From 6d639edc43483f2f22f3ad4d23a1291754b065b2 Mon Sep 17 00:00:00 2001 From: Vishnu Date: Thu, 3 Apr 2025 09:58:55 +0530 Subject: [PATCH] update socket connection URL to include '/Builder' path --- app/src/store/store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/store/store.ts b/app/src/store/store.ts index 87f937c..bd903f2 100644 --- a/app/src/store/store.ts +++ b/app/src/store/store.ts @@ -12,7 +12,7 @@ export const useSocketStore = create((set: any, get: any) => ({ } const socket = io( - `http://${process.env.REACT_APP_SERVER_SOCKET_API_BASE_URL}`, + `http://${process.env.REACT_APP_SERVER_SOCKET_API_BASE_URL}/Builder`, { reconnection: false, auth: { email, organization },