Skip to content

Commit

Permalink
Updated WS configuration in the Web Client
Browse files Browse the repository at this point in the history
  • Loading branch information
ihor committed Sep 5, 2024
1 parent d5b3f52 commit 7ce341f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/app/services/hooks/use-websockets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}, []);
Expand Down

0 comments on commit 7ce341f

Please sign in to comment.