refactor(frontend):注释掉错误消息弹窗

- 在 settings.vue 文件中注释掉了错误消息弹窗的代码行
-这个修改可能会影响错误处理的用户界面展示
This commit is contained in:
spark 2025-02-11 13:56:39 +08:00
parent 95f9f1840f
commit e622b7d86e

View File

@ -164,9 +164,7 @@ window.onerror = function (event, source, lineno, colno, error) {
colno: colno,
error: error ? error.stack : null
});
message.error("发生错误:"+event)
//message.error(":"+event)
return true;
};
</script>