From 61e8a981cfa3a13a784f8b270ed4331e27f0e2f2 Mon Sep 17 00:00:00 2001 From: kravchenkodhealth <106426895+kravchenkodhealth@users.noreply.github.com> Date: Tue, 20 Dec 2022 11:12:17 +0200 Subject: [PATCH] [@dhealthdapps/frontend] fix(widgets): fix socket url --- runtime/dapp-frontend-vue/src/views/LoginScreen/LoginScreen.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/dapp-frontend-vue/src/views/LoginScreen/LoginScreen.ts b/runtime/dapp-frontend-vue/src/views/LoginScreen/LoginScreen.ts index ab5c5274..c06fb98e 100644 --- a/runtime/dapp-frontend-vue/src/views/LoginScreen/LoginScreen.ts +++ b/runtime/dapp-frontend-vue/src/views/LoginScreen/LoginScreen.ts @@ -322,7 +322,7 @@ export default class LoginScreen extends MetaView { public async mounted() { this.qrConfig = this.createLoginQRCode(); - this.wsConnection = io("http://localhost:80/"); + this.wsConnection = io("http://localhost:80/ELEVATE"); this.wsConnection.on("connect", () => { console.log("Successfully connected to the echo websocket server...");