From f524a9c63ce209a87da8c52e03072434d33b0cae Mon Sep 17 00:00:00 2001 From: Abishek <43115551+vj-abishek@users.noreply.github.com> Date: Sat, 3 Apr 2021 17:59:34 +0530 Subject: [PATCH] feat: changed server url --- src/Components/Functions/Users.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/Functions/Users.js b/src/Components/Functions/Users.js index 3fd1971..c8d4675 100644 --- a/src/Components/Functions/Users.js +++ b/src/Components/Functions/Users.js @@ -3,7 +3,7 @@ import io from 'socket.io-client'; const connectionString = window.location.hostname === 'localhost' ? `http://${window.location.hostname}:8080` - : 'https://relp-server-1.vsbabuj.repl.co'; + : 'https://relp.vsbabuj.repl.co'; const socket = io.connect(connectionString); export default socket;