1. Integerated DashBoard, #97

Merged
Marikannan merged 31 commits from v3-wall into main 2025-06-04 12:09:09 +00:00
1 changed files with 4 additions and 4 deletions
Showing only changes of commit 44b6b4daab - Show all commits

View File

@ -12,18 +12,18 @@ export const useSocketStore = create<any>((set: any, get: any) => ({
}
const socket = io(
// `http://${process.env.REACT_APP_SERVER_SOCKET_API_BASE_URL}/Builder`,
`http://${process.env.REACT_APP_SERVER_SOCKET_API_BASE_URL}/Builder`,
{
reconnection: true,
// auth: { email, organization },
auth: { email, organization },
}
);
const visualizationSocket = io(
// `http://${process.env.REACT_APP_SERVER_SOCKET_API_BASE_URL}/Visualization`,
`http://${process.env.REACT_APP_SERVER_SOCKET_API_BASE_URL}/Visualization`,
{
reconnection: true,
// auth: { email, organization },
auth: { email, organization },
}
);