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 504d58d87..a2fe2ab52 100644
--- a/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/CityMap/index.tsx
+++ b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/CityMap/index.tsx
@@ -1,12 +1,12 @@
"use client"
import { useIntl } from "react-intl"
-import { useHotelDataStore } from "@/stores/hotel-data"
+import { useDestinationDataStore } from "@/stores/destination-data"
import Title from "@/components/TempDesignSystem/Text/Title"
import Map from "../../Map"
-import { getCityHeadingText } from "../../utils"
+import { getHeadingText } from "../../utils"
import HotelList from "./HotelList"
import styles from "./cityMap.module.css"
@@ -21,7 +21,7 @@ interface CityMapProps {
export default function CityMap({ mapId, apiKey, city }: CityMapProps) {
const intl = useIntl()
- const { activeHotels, allFilters, activeFilters } = useHotelDataStore(
+ const { activeHotels, allFilters, activeFilters } = useDestinationDataStore(
(state) => ({
activeHotels: state.activeHotels,
allFilters: state.allFilters,
@@ -37,7 +37,7 @@ export default function CityMap({ mapId, apiKey, city }: CityMapProps) {
textTransform="regular"
className={styles.title}
>
- {getCityHeadingText(intl, city.name, allFilters, activeFilters[0])}
+ {getHeadingText(intl, city.name, allFilters, activeFilters[0])}
diff --git a/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/index.tsx
index 4e3adc600..1e4f1a5c6 100644
--- a/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/index.tsx
+++ b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/index.tsx
@@ -23,13 +23,7 @@ import styles from "./destinationCityPage.module.css"
import { PageContentTypeEnum } from "@/types/requests/contentType"
-interface DestinationCityPageProps {
- filterFromUrl: string | undefined
-}
-
-export default async function DestinationCityPage({
- filterFromUrl,
-}: DestinationCityPageProps) {
+export default async function DestinationCityPage() {
const pageData = await getDestinationCityPage()
if (!pageData) {
@@ -53,10 +47,7 @@ export default async function DestinationCityPage({
return (
<>
}>
-
+
@@ -67,7 +58,7 @@ export default async function DestinationCityPage({
{blocks && }