From 01e9542dedc7d0d43979550e81a880b0f85fa926 Mon Sep 17 00:00:00 2001 From: Hrishikesh Vaipurkar Date: Tue, 14 Oct 2025 09:33:06 +0000 Subject: [PATCH] Merged in fix/change-footer-partnerSas-link-to-public (pull request #2964) fix(SW-3520): Updated sas eurobonus link in footer Approved-by: Anton Gunnarsson --- apps/partner-sas/components/Menu/FooterMenu/index.tsx | 4 ++-- packages/common/constants/routes/sasEuroBonus.ts | 10 ++++++++++ 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 packages/common/constants/routes/sasEuroBonus.ts diff --git a/apps/partner-sas/components/Menu/FooterMenu/index.tsx b/apps/partner-sas/components/Menu/FooterMenu/index.tsx index 8623e1f96..0a92677ff 100644 --- a/apps/partner-sas/components/Menu/FooterMenu/index.tsx +++ b/apps/partner-sas/components/Menu/FooterMenu/index.tsx @@ -10,7 +10,7 @@ import { policies, rates, } from "@scandic-hotels/common/constants/routes/customerService" -import { partnerSas } from "@scandic-hotels/common/constants/routes/myPages" +import { sasEuroBonus } from "@scandic-hotels/common/constants/routes/sasEuroBonus" import Link from "@scandic-hotels/design-system/Link" import { Typography } from "@scandic-hotels/design-system/Typography" @@ -61,7 +61,7 @@ export function FooterMenu() { {intl.formatMessage({ defaultMessage: "SAS EuroBonus" })} diff --git a/packages/common/constants/routes/sasEuroBonus.ts b/packages/common/constants/routes/sasEuroBonus.ts new file mode 100644 index 000000000..278dfa5fb --- /dev/null +++ b/packages/common/constants/routes/sasEuroBonus.ts @@ -0,0 +1,10 @@ +import type { LangRoute } from "./langRoute" + +export const sasEuroBonus: LangRoute = { + da: `/da/scandic-friends/partnere/sas-eurobonus`, + de: `/de/scandic-friends/partner/sas-eurobonus`, + en: `/en/scandic-friends/partners/sas-eurobonus`, + fi: `/fi/scandic-friends/yhteistyokumppanit/sas-eurobonus`, + no: `/no/scandic-friends/partnere/sas-eurobonus`, + sv: `/sv/scandic-friends/partners/sas-eurobonus`, +}