From e02e3494356745249affa04debd576f62e28b415 Mon Sep 17 00:00:00 2001 From: Sch1nken Date: Wed, 27 Dec 2023 02:15:52 +0100 Subject: [PATCH] Fix socket.io addr --- client/src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/App.js b/client/src/App.js index 9dbee7c..57e3214 100644 --- a/client/src/App.js +++ b/client/src/App.js @@ -4,7 +4,7 @@ import {io} from 'socket.io-client'; import {DrawingApp, Layer} from './DrawingApp'; -const socket = io('ws://192.168.0.155:7777'); +const socket = io(); var id = ""; var drawing_app = null;