修改上传图片安全验证问题

This commit is contained in:
张成
2026-02-14 12:59:21 +08:00
parent 8688b6b82d
commit 64f0267457
54 changed files with 239 additions and 240 deletions

View File

@@ -17,14 +17,14 @@ const HomePage: React.FC = () => {
if (loginResult.success) {
// 静默登录成功,获取用户信息
fetchUserInfo().catch((error) => {
console.error("获取用户信息失败:", error);
console.warn("获取用户信息失败:", error);
});
checkNicknameChangeStatus().catch((error) => {
console.error("检查昵称变更状态失败:", error);
console.warn("检查昵称变更状态失败:", error);
});
}
} catch (error) {
console.error("静默登录失败:", error);
console.warn("静默登录失败:", error);
// 静默登录失败不影响使用
}