diff --git a/src/views/Profile/ProfilePage.js b/src/views/Profile/ProfilePage.js
index fd2d155e..8751fa0d 100644
--- a/src/views/Profile/ProfilePage.js
+++ b/src/views/Profile/ProfilePage.js
@@ -270,9 +270,6 @@ export default function ProfilePage() {
用户名: {user?.username}
- {user?.is_verified && (
- 已实名认证
- )}
{user?.has_wechat && (
微信已绑定
)}
@@ -630,54 +627,9 @@ export default function ProfilePage() {
- {/* 实名认证 */}
- {!user?.is_verified && (
-
-
- 实名认证
-
-
-
-
- 完成实名认证,获得更高权限和信任度
-
-
-
-
-
- )}
-
- {/* 实名认证模态框 */}
-
-
-
- 实名认证
-
-
-
-
- 真实姓名
-
-
-
- 身份证号
-
-
-
- 您的个人信息将严格保密,仅用于身份验证
-
-
-
-
-
-
);
}
\ No newline at end of file
diff --git a/src/views/Settings/SettingsPage.js b/src/views/Settings/SettingsPage.js
index b5aa4c5d..4837f2c5 100644
--- a/src/views/Settings/SettingsPage.js
+++ b/src/views/Settings/SettingsPage.js
@@ -34,7 +34,8 @@ import {
} from '@chakra-ui/react';
import {
LinkIcon,
- DeleteIcon
+ DeleteIcon,
+ EditIcon
} from '@chakra-ui/icons';
import { FaWeixin, FaMobile, FaEnvelope } from 'react-icons/fa';
import { useAuth } from '../../contexts/AuthContext';