From 18cf8c960efd7135a1b9391608e8c7ce861af694 Mon Sep 17 00:00:00 2001 From: nestoralonso Date: Mon, 7 Oct 2019 09:34:51 -0500 Subject: [PATCH] Update WsUtil.js Fix typo in message --- web/src/common/WsUtil.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/common/WsUtil.js b/web/src/common/WsUtil.js index 80d8097..833d8e8 100644 --- a/web/src/common/WsUtil.js +++ b/web/src/common/WsUtil.js @@ -15,7 +15,7 @@ import { message } from 'antd'; */ export function initWs(wsPort = location.port, path = 'do-not-proxy') { if(!WebSocket){ - throw (new Error('WebSocket is not supportted on this browser')); + throw (new Error('WebSocket is not supported on this browser')); } const wsClient = new WebSocket(`ws://${location.hostname}:${wsPort}/${path}`);