fix(dashboard): remove hardcoded user nickname modification

This commit is contained in:
Ray.Hao
2025-11-10 10:49:18 +08:00
parent c16f089071
commit a9f2697ef0

View File

@@ -617,10 +617,6 @@ watch(
// 组件挂载后加载访客统计数据和通知公告数据
onMounted(() => {
fetchVisitStatsData();
// 修改用户昵称为"奥特曼"
userStore.userInfo.nickname = "奥特曼";
console.log("用户昵称已修改为:", userStore.userInfo.nickname);
});
</script>