fixed bug for markmap

This commit is contained in:
RockYang
2024-04-23 20:47:06 +08:00
parent 90f5275201
commit 2933c057a2
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()
});