diff --git a/frontend/app/store/global.ts b/frontend/app/store/global.ts index 53fe90da3..0ddcc35b5 100644 --- a/frontend/app/store/global.ts +++ b/frontend/app/store/global.ts @@ -555,6 +555,7 @@ function getConnStatusAtom(conn: string): PrimitiveAtom { status: "connected", hasconnected: true, activeconnnum: 0, + wshenabled: false, }; rtn = atom(connStatus); } else { @@ -565,6 +566,7 @@ function getConnStatusAtom(conn: string): PrimitiveAtom { status: "disconnected", hasconnected: false, activeconnnum: 0, + wshenabled: false, }; rtn = atom(connStatus); }