fixed bug for markmap

This commit is contained in:
RockYang
2024-04-23 20:47:06 +08:00
parent 61b2dbc9f1
commit 9d28e62142
2 changed files with 4 additions and 3 deletions

View File

@@ -230,7 +230,6 @@ const connect = (userId) => {
const _socket = new WebSocket(host + `/api/markMap/client?user_id=${userId}&model_id=${modelID.value}`);
_socket.addEventListener('open', () => {
socket.value = _socket;
// 发送心跳消息
sendHeartbeat()
});