diff --git a/src/layouts/dashbord/navigator.tsx b/src/layouts/dashbord/navigator.tsx
index 3932586..7d1ce7e 100644
--- a/src/layouts/dashbord/navigator.tsx
+++ b/src/layouts/dashbord/navigator.tsx
@@ -83,15 +83,15 @@ export default function Navigator(props: DrawerProps) {
label: "管理メニュー",
children: [
{
- label: "店舗管理",
+ label: "代理店管理",
icon: ,
children: [
{
- label: "店舗一覧",
+ label: "代理店一覧",
id: PageID.店舗一覧,
},
{
- label: "店舗新規登録",
+ label: "代理店新規登録",
id: PageID.店舗新規登録,
},
],
@@ -140,6 +140,12 @@ export default function Navigator(props: DrawerProps) {
label: "顧客新規登録",
id: PageID.ログインユーザ_顧客新規登録,
},
+ ],
+ },
+ {
+ label: "店舗管理",
+ icon: ,
+ children: [
{
label: "店舗一覧",
id: PageID.ログインユーザ_店舗一覧,
@@ -156,7 +162,7 @@ export default function Navigator(props: DrawerProps) {
label: "アカウント",
children: [
{
- label: "成り代わり終了",
+ label: "スーパーユーザ画面に戻る",
icon: ,
id: PageID.成り代わり終了,
whenIsSwitched: true,
diff --git a/src/pages/dashboard/login-user/店舗/一覧/TableBox.tsx b/src/pages/dashboard/login-user/店舗/一覧/TableBox.tsx
index 8430510..db71fce 100644
--- a/src/pages/dashboard/login-user/店舗/一覧/TableBox.tsx
+++ b/src/pages/dashboard/login-user/店舗/一覧/TableBox.tsx
@@ -25,7 +25,7 @@ type CommonProps = {
export default function TableBox({ table }: CommonProps) {
const { info, error } = useSnackbarCustom();
const TABLE_HEAD: HeadLabelProps[] = [
- { id: "name", label: "名前", align: "left", needSort: false },
+ { id: "name", label: "店舗名", align: "left", needSort: false },
{ id: "email", label: "Email", align: "left", needSort: false },
{ id: "shop_name", label: "店舗名", align: "left", needSort: false },
{ id: "action", label: "", align: "left", needSort: false },
diff --git a/src/pages/dashboard/login-user/店舗/一覧/index.tsx b/src/pages/dashboard/login-user/店舗/一覧/index.tsx
index 95548f0..732747c 100644
--- a/src/pages/dashboard/login-user/店舗/一覧/index.tsx
+++ b/src/pages/dashboard/login-user/店舗/一覧/index.tsx
@@ -15,7 +15,7 @@ export default function Main() {
);
useEffect(() => {
- setHeaderTitle("ログインユーザ一覧");
+ setHeaderTitle("店舗一覧");
setTabs(null);
}, []);
diff --git a/src/pages/dashboard/login-user/顧客ログインユーザ一覧/index.tsx b/src/pages/dashboard/login-user/顧客ログインユーザ一覧/index.tsx
index fc5fdce..e26e5c0 100644
--- a/src/pages/dashboard/login-user/顧客ログインユーザ一覧/index.tsx
+++ b/src/pages/dashboard/login-user/顧客ログインユーザ一覧/index.tsx
@@ -15,7 +15,7 @@ export default function 顧客一覧() {
);
useEffect(() => {
- setHeaderTitle("ログインユーザ一覧");
+ setHeaderTitle("店舗一覧");
setTabs(null);
}, []);