From b5f0003b1ab6d078cd017b94058bf2699217609c Mon Sep 17 00:00:00 2001 From: Fredrik Thorsson Date: Thu, 8 Aug 2024 14:19:52 +0200 Subject: [PATCH] feat(SW-68): remove fragment --- .../hotelreservation/select-hotel/page.tsx | 54 +++++++++---------- 1 file changed, 26 insertions(+), 28 deletions(-) diff --git a/app/[lang]/(live)/(public)/hotelreservation/select-hotel/page.tsx b/app/[lang]/(live)/(public)/hotelreservation/select-hotel/page.tsx index 33f736487..cb823d655 100644 --- a/app/[lang]/(live)/(public)/hotelreservation/select-hotel/page.tsx +++ b/app/[lang]/(live)/(public)/hotelreservation/select-hotel/page.tsx @@ -29,33 +29,31 @@ export default async function SelectHotelPage({ const tempSearchTerm = "Stockholm" return ( - <> -
-
- - - {formatMessage({ id: "Show map" })} - - - -
-
- {hotels.map((hotel) => ( - - ))} -
-
- +
+
+ + + {formatMessage({ id: "Show map" })} + + + +
+
+ {hotels.map((hotel) => ( + + ))} +
+
) }