diff --git a/client/src/app/services/hooks/use-websockets.ts b/client/src/app/services/hooks/use-websockets.ts index 6cc41fc..1b9d5d9 100644 --- a/client/src/app/services/hooks/use-websockets.ts +++ b/client/src/app/services/hooks/use-websockets.ts @@ -76,7 +76,7 @@ export const useWebSockets = ({ ); const connect = useCallback((publicKey: string) => { - const url = `${config.lottery_api_ws_url}?caller_public_key=${publicKey}`; + const url = `${config.lottery_api_ws_url}/deploys?caller_public_key=${publicKey}`; const ws = new WebSocket(url); setSession(ws); }, []);