Merged in fix/my-pages-menu-not-translated (pull request #2045)

fix: my pages menu not translated

* fix: my pages menu not translated
fix: able to pass lang to getIntl()


Approved-by: Michael Zetterberg
This commit is contained in:
Joakim Jäderberg
2025-05-12 07:57:11 +00:00
parent cbc0175979
commit cbbde963dc
3 changed files with 5 additions and 4 deletions

View File

@@ -19,7 +19,8 @@ export const getPrimaryLinks = cache(
lang: Lang
userLoyalty: UserLoyalty
}): Promise<MyPagesLink[]> => {
const intl = await getIntl()
const intl = await getIntl({ lang })
const showSASLink = isScandicXSASActive(userLoyalty)
const [showTeamMemberLink] = await safeTry(showTeamMemberCard())

View File

@@ -10,7 +10,7 @@ export async function getSecondaryLinks({
}: {
lang: Lang
}): Promise<MyPagesLink[]> {
const intl = await getIntl()
const intl = await getIntl({ lang })
const menuItems: MyPagesLink[] = [
{
type: "link",