diff --git a/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/CityMap/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/CityMap/index.tsx
index 7eaf64037..ae31fcadf 100644
--- a/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/CityMap/index.tsx
+++ b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/CityMap/index.tsx
@@ -15,21 +15,19 @@ import HotelList from "./HotelList"
import styles from "./cityMap.module.css"
-import type { CityLocation } from "@scandic-hotels/trpc/types/locations"
-
import type { MapLocation } from "@/types/components/mapLocation"
interface CityMapProps {
mapId: string
apiKey: string
- city: CityLocation
+ defaultHeading: string
defaultLocation: MapLocation
}
export default function CityMap({
mapId,
apiKey,
- city,
+ defaultHeading,
defaultLocation,
}: CityMapProps) {
const intl = useIntl()
@@ -78,7 +76,7 @@ export default function CityMap({
) : null}
- {getHeadingText(intl, city.name, "city", activeSeoFilter)}
+ {getHeadingText(defaultHeading, activeSeoFilter)}
diff --git a/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/index.tsx
index 9e6c3f6d4..f4074e7a3 100644
--- a/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/index.tsx
+++ b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/index.tsx
@@ -57,6 +57,7 @@ export default async function DestinationCityPage({
const {
blocks,
images,
+ heading,
preamble,
experiences,
has_sidepeek,
@@ -115,7 +116,7 @@ export default async function DestinationCityPage({
) : (
@@ -135,9 +136,8 @@ export default async function DestinationCityPage({