Merge branch 'feature/debug_header' into 'develop'

debug site headers

See merge request witel3/loan-facilities-expert!21
This commit is contained in:
yasaman aliakbari
2023-07-12 11:14:09 +00:00
3 changed files with 5 additions and 4 deletions

View File

@@ -46,7 +46,8 @@
},
"Dashboard": {
"dashboard_page": "داشبورد",
"change_password": "تغییر رمز عبور"
"change_password": "تغییر رمز عبور",
"edit_profile": "ویرایش پروفایل"
},
"MuiDatePicker": {
"date_picker_birthday": "تاریخ"
@@ -85,6 +86,6 @@
"error_static_text": "عملیات شما با خطا مواجه شد",
"warning_static_text": "خطا سرور",
"success_static_text": "عملیات شما با موفقیت انجام شد",
"pending":"در حال انجام..."
"pending": "در حال انجام..."
}
}

View File

@@ -6,7 +6,7 @@ import { parse } from "next-useragent";
export default function LoanFollowUp() {
return (
<WithAuthMiddleware>
<TitlePage text="Dashboard.change_password" />
<TitlePage text="Dashboard.edit_profile" />
<DashboardEditProfile />
</WithAuthMiddleware>
);

View File

@@ -6,7 +6,7 @@ import { parse } from "next-useragent";
export default function Dashboard() {
return (
<WithAuthMiddleware>
<TitlePage text="dashboard.dashboard_page" />
<TitlePage text="Dashboard.dashboard_page" />
<DashboardFirstComponent />
</WithAuthMiddleware>
);