Merged in feat/LOY-165-menu (pull request #1454)

feat/myprofile-menu fixed casing

* feat/myprofile-menu fixed casing


Approved-by: Erik Tiekstra
This commit is contained in:
Linus Flood
2025-03-03 06:52:33 +00:00
parent 4ad1799532
commit 8942a1da11
8 changed files with 29 additions and 29 deletions

View File

@@ -26,17 +26,17 @@ export const getPrimaryLinks = cache(
},
{
type: "link",
text: intl.formatMessage({ id: "My Points" }),
text: intl.formatMessage({ id: "My points" }),
href: routes.points[lang],
},
{
type: "link",
text: intl.formatMessage({ id: "My Stays" }),
text: intl.formatMessage({ id: "My stays" }),
href: routes.stays[lang],
},
{
type: "link",
text: intl.formatMessage({ id: "My Benefits" }),
text: intl.formatMessage({ id: "My benefits" }),
href: routes.benefits[lang],
},
]

View File

@@ -19,7 +19,7 @@ export async function getSecondaryLinks({
},
{
type: "link",
text: intl.formatMessage({ id: "My Profile" }),
text: intl.formatMessage({ id: "My profile" }),
href: routes.profile[lang],
},
]