diff --git a/app/[lang]/(live)/(public)/hotelreservation/select-hotel/map/page.tsx b/app/[lang]/(live)/(public)/hotelreservation/select-hotel/map/page.tsx index 1c66c16cb..89f4e62ca 100644 --- a/app/[lang]/(live)/(public)/hotelreservation/select-hotel/map/page.tsx +++ b/app/[lang]/(live)/(public)/hotelreservation/select-hotel/map/page.tsx @@ -9,7 +9,11 @@ import { setLang } from "@/i18n/serverContext" import styles from "./page.module.css" -import { PointOfInterest } from "@/types/hotel" +import { + PointOfInterest, + PointOfInterestCategoryNameEnum, + PointOfInterestGroupEnum, +} from "@/types/hotel" import { LangParams, PageArgs } from "@/types/params" export default async function SelectHotelMapPage({ @@ -36,7 +40,8 @@ export default async function SelectHotelMapPage({ }, name: hotel.hotelData.name, distance: hotel.hotelData.location.distanceToCentre, - category: "Hotel", + categoryName: PointOfInterestCategoryNameEnum.HOTEL, + group: PointOfInterestGroupEnum.LOCATION, })) return (