Skip to content

Commit

Permalink
ip hardcoded
Browse files Browse the repository at this point in the history
  • Loading branch information
uo288543 committed Apr 7, 2024
1 parent 1532060 commit 7312b76
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion webapp/src/pages/MultiplayerRoom.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import { useContext } from 'react';
import { SessionContext } from '../SessionContext';
import { useNavigate } from 'react-router-dom';

const socketEndpoint = process.env.MULTIPLAYER_ENDPOINT || 'ws://localhost:5010';
//const socketEndpoint = process.env.MULTIPLAYER_ENDPOINT || 'ws://localhost:5010';
const socketEndpoint = process.env.MULTIPLAYER_ENDPOINT || 'ws://20.19.89.97/:5010';

const MultiplayerRoom = () => {
const [roomCode, setRoomCode] = useState("");
Expand Down

0 comments on commit 7312b76

Please sign in to comment.