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`, +}