diff --git a/packages/booking-flow/lib/components/SelectHotel/SelectHotelMap/SelectHotelMapContent/index.tsx b/packages/booking-flow/lib/components/SelectHotel/SelectHotelMap/SelectHotelMapContent/index.tsx index 65fa1b646..3e0b452d2 100644 --- a/packages/booking-flow/lib/components/SelectHotel/SelectHotelMap/SelectHotelMapContent/index.tsx +++ b/packages/booking-flow/lib/components/SelectHotel/SelectHotelMap/SelectHotelMapContent/index.tsx @@ -265,6 +265,7 @@ export function SelectHotelMapContent({ }, } })} + activeHotelPin={hotelMapStore.activeHotel} mapId={mapId} onTilesLoaded={debouncedUpdateHotelCards} fitBounds={isAboveMobile || !hotelMapStore.activeHotel} diff --git a/packages/design-system/lib/components/Map/InteractiveMap/HotelListingMapContent/index.tsx b/packages/design-system/lib/components/Map/InteractiveMap/HotelListingMapContent/index.tsx index e5389ace2..f0c9d1a8f 100644 --- a/packages/design-system/lib/components/Map/InteractiveMap/HotelListingMapContent/index.tsx +++ b/packages/design-system/lib/components/Map/InteractiveMap/HotelListingMapContent/index.tsx @@ -33,7 +33,7 @@ export function HotelListingMapContent({ lang, onClickHotel, }: HotelListingMapContentProps) { - const isDesktop = useMediaQuery('(min-width: 768px)') + const isDesktop = useMediaQuery('(min-width: 900px)') const toggleActiveHotelPin = ( args: { hotelName: string; hotelId: string } | null