From 75011dffe54c56fadeec8870b55d23591c04b159 Mon Sep 17 00:00:00 2001 From: Fredrik Thorsson Date: Tue, 6 Aug 2024 12:49:50 +0200 Subject: [PATCH] feat: schema change --- .../HotelReservation/HotelCard/index.tsx | 8 +++- .../SelectHotel/HotelFilter/index.tsx | 16 +++---- server/routers/hotels/output.ts | 8 ++-- server/routers/hotels/tempFilterData.json | 42 +++++++++---------- 4 files changed, 38 insertions(+), 36 deletions(-) diff --git a/components/HotelReservation/HotelCard/index.tsx b/components/HotelReservation/HotelCard/index.tsx index 6d7070257..f700f57f1 100644 --- a/components/HotelReservation/HotelCard/index.tsx +++ b/components/HotelReservation/HotelCard/index.tsx @@ -13,7 +13,13 @@ export default async function HotelCard({ hotel }: HotelCardProps) { const { formatMessage } = await getIntl() return (
- hotel image + {hotel.hotelContent.images.metaData.altText}
diff --git a/components/HotelReservation/SelectHotel/HotelFilter/index.tsx b/components/HotelReservation/SelectHotel/HotelFilter/index.tsx index 8b85cd28b..49da69bb5 100644 --- a/components/HotelReservation/SelectHotel/HotelFilter/index.tsx +++ b/components/HotelReservation/SelectHotel/HotelFilter/index.tsx @@ -11,8 +11,8 @@ export default async function HotelFilter({ filters }: HotelFilterProps) {