Skip to content

Commit

Permalink
fix: change ip of socket
Browse files Browse the repository at this point in the history
  • Loading branch information
bbb169 committed Oct 16, 2023
1 parent ee7eb95 commit c2e392e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/playRoom/hooks/usePlayers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function usePlayersCards (): [PlayerInfoType[], PlayerInfoType |
const navigate = useNavigate();

useEffect(() => {
const socket = io('http://localhost:4000');
const socket = io('http://152.136.254.142:4001');
// client-side
socket.on('connect', () => {
console.log('========== we are connecting ws ===========');
Expand Down

0 comments on commit c2e392e

Please sign in to comment.