-
-
+
+
Slash
diff --git a/web/src/components/setting/AccountSection.tsx b/web/src/components/setting/AccountSection.tsx
index 90068ff..5a486ec 100644
--- a/web/src/components/setting/AccountSection.tsx
+++ b/web/src/components/setting/AccountSection.tsx
@@ -19,7 +19,7 @@ const AccountSection: React.FC = () => {
{isAdmin &&
Admin }
- Email:
+ Email:
{currentUser.email}
diff --git a/web/src/pages/Account.tsx b/web/src/pages/Account.tsx
deleted file mode 100644
index 48985e5..0000000
--- a/web/src/pages/Account.tsx
+++ /dev/null
@@ -1,37 +0,0 @@
-import { Button } from "@mui/joy";
-import { useState } from "react";
-import ChangePasswordDialog from "../components/ChangePasswordDialog";
-import EditUserinfoDialog from "../components/EditUserinfoDialog";
-import useUserStore from "../stores/v1/user";
-
-const Account: React.FC = () => {
- const currentUser = useUserStore().getCurrentUser();
- const [showEditUserinfoDialog, setShowEditUserinfoDialog] = useState
(false);
- const [showChangePasswordDialog, setShowChangePasswordDialog] = useState(false);
-
- return (
- <>
-
-
{currentUser.nickname}
-
- Email:
- {currentUser.email}
-
-
- setShowEditUserinfoDialog(true)}>
- Edit
-
- setShowChangePasswordDialog(true)}>
- Change password
-
-
-
-
- {showEditUserinfoDialog && setShowEditUserinfoDialog(false)} />}
-
- {showChangePasswordDialog && setShowChangePasswordDialog(false)} />}
- >
- );
-};
-
-export default Account;
diff --git a/web/src/pages/SignIn.tsx b/web/src/pages/SignIn.tsx
index b1480b4..0439a1f 100644
--- a/web/src/pages/SignIn.tsx
+++ b/web/src/pages/SignIn.tsx
@@ -74,7 +74,7 @@ const SignIn: React.FC = () => {
-
Slash
+
Slash