fix lint warning

This commit is contained in:
Pierre Balzack 2023-06-27 17:55:33 -07:00
parent d9beda5be9
commit fabad03bab

View File

@ -175,7 +175,7 @@ export function useAppContext(websocket) {
ws.current = createWebsocket(protocol + window.location.host + "/status?mode=ring");
ws.current.onmessage = (ev) => {
try {
if (ev.data == '') {
if (ev.data === '') {
appLogout(false);
return;
}