Skip to content

Commit

Permalink
Merge pull request #9 from phillip-che/phillip-che-patch-1
Browse files Browse the repository at this point in the history
fix socket url
  • Loading branch information
andrewjunggg authored Dec 2, 2023
2 parents 4654aa8 + cca140b commit a7c9ec7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/context/socket.context.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ interface Context {
}

const SOCKET_URL =
process.env.NEXT_PUBLIC_SOCKET_URL || 'http://localhost:4000';
process.env.NEXT_PUBLIC_SOCKET_URL || 'http://54.153.32.172:4000';

const socket = io(SOCKET_URL, {
reconnection: true,
Expand Down

0 comments on commit a7c9ec7

Please sign in to comment.