From 2b29a03d3c439f949d9a1472c2468a76e92afb4a Mon Sep 17 00:00:00 2001 From: Fredrik Thorsson Date: Tue, 19 Nov 2024 14:57:08 +0100 Subject: [PATCH] feat(SW-914): remove fragment --- .../HotelPage/SidePeeks/Amenities/index.tsx | 30 +++++++++---------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/components/ContentType/HotelPage/SidePeeks/Amenities/index.tsx b/components/ContentType/HotelPage/SidePeeks/Amenities/index.tsx index 0ea04b623..90fd6772c 100644 --- a/components/ContentType/HotelPage/SidePeeks/Amenities/index.tsx +++ b/components/ContentType/HotelPage/SidePeeks/Amenities/index.tsx @@ -22,22 +22,20 @@ export default async function AmenitiesSidepeek({ contentKey={amenities[lang]} title={intl.formatMessage({ id: "Amenities" })} > - <> - - {amenitiesList.map((amenity) => { - const name = mapFacilityToIconName(amenity.id) - return ( - - - - ) - })} - - + + {amenitiesList.map((amenity) => { + const name = mapFacilityToIconName(amenity.id) + return ( + + + + ) + })} + ) }