diff --git a/public/locales/en/common.json b/public/locales/en/common.json index e66ff50f..7d078725 100644 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -84,7 +84,7 @@ "DASHBOARD": "Dashboard", "MANAGE_USERS": "Manage Users", "COURSE_PLANNER": "Course Planner", - "CENTER": "Centers", + "CENTERS": "Centers", "FACILITATORS": "Facilitators", "LEARNERS": "Learners", "TEAM_LEADERS": "Team Leaders", diff --git a/src/components/layouts/sidebar/MenuItems.js b/src/components/layouts/sidebar/MenuItems.js index fd450577..de2af6cb 100644 --- a/src/components/layouts/sidebar/MenuItems.js +++ b/src/components/layouts/sidebar/MenuItems.js @@ -25,7 +25,7 @@ const Menuitems = [ }, { - title: "SIDEBAR.CENTER", + title: "SIDEBAR.CENTERS", icon: "users", href: "/centers", }, diff --git a/src/pages/centers.tsx b/src/pages/centers.tsx index 05734464..3cd6c410 100644 --- a/src/pages/centers.tsx +++ b/src/pages/centers.tsx @@ -473,7 +473,7 @@ const Center: React.FC = () => { // props to send in header const userProps = { - userType: t("SIDEBAR.CENTER"), + userType: t("SIDEBAR.CENTERS"), searchPlaceHolder: t("CENTERS.SEARCHBAR_PLACEHOLDER"), selectedState: selectedState, selectedStateCode: selectedStateCode,