feat(SW-344) Correct position of pins in mobile

This commit is contained in:
Pontus Dreij
2024-11-12 14:33:37 +01:00
parent 96a5277881
commit 87b999676b
13 changed files with 106 additions and 68 deletions

View File

@@ -18,10 +18,8 @@ export interface HotelListingProps {
export interface SelectHotelMapProps {
apiKey: string
coordinates: Coordinates
hotelPins: HotelPin[]
mapId: string
isModal: boolean
hotels: HotelData[]
}
@@ -53,3 +51,9 @@ export interface HotelCardDialogProps {
data: HotelPin
handleClose: (event: { stopPropagation: () => void }) => void
}
export interface HotelCardDialogListingProps {
hotels: HotelData[]
activeCard: string | null | undefined
onActiveCardChange: (hotelName: string | null) => void
}