diff --git a/apps/scandic-web/components/ContentType/HotelPage/Facilities/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/Facilities/index.tsx index d1c499b5c..7a5e3f98b 100644 --- a/apps/scandic-web/components/ContentType/HotelPage/Facilities/index.tsx +++ b/apps/scandic-web/components/ContentType/HotelPage/Facilities/index.tsx @@ -67,6 +67,7 @@ export async function Facilities({ heading={facility.heading} secondaryButton={{ href: facility.sidepeekHref, + scrollOnClick: false, text: intl.formatMessage({ id: "common.readMore", defaultMessage: "Read more", diff --git a/apps/scandic-web/components/ContentType/HotelPage/Facilities/utils.ts b/apps/scandic-web/components/ContentType/HotelPage/Facilities/utils.ts index ca170dd10..c51a4e160 100644 --- a/apps/scandic-web/components/ContentType/HotelPage/Facilities/utils.ts +++ b/apps/scandic-web/components/ContentType/HotelPage/Facilities/utils.ts @@ -131,11 +131,13 @@ export function mapActivityCardsToInfoCards( } mappedCard.primaryButton = { href: `?s=${card.sidepeekSlug}`, + scrollOnClick: false, text: card.ctaText, } } else { mappedCard.secondaryButton = { href: `?s=${card.sidepeekSlug}`, + scrollOnClick: false, text: card.ctaText, } }