feat(SW-914): fix merge hickup

This commit is contained in:
Fredrik Thorsson
2024-11-27 09:45:08 +01:00
parent 37fda8f1ab
commit 43f9a21a47
2 changed files with 1 additions and 23 deletions

View File

@@ -1,10 +1,3 @@
export { default as AboutTheHotelSidePeek } from "./AboutTheHotel"
<<<<<<< HEAD
<<<<<<< HEAD
export { default as RoomSidePeek } from "./Room"
=======
export { default as AmenitiesSidePeek } from "./Amenities"
>>>>>>> de3b70ce (feat(SW-914): add correct import)
=======
>>>>>>> d2b749c0 (feat(SW-914): merge changes)
export { default as WellnessAndExerciseSidePeek } from "./WellnessAndExercise"

View File

@@ -28,19 +28,11 @@ import Facilities from "./Facilities"
import IntroSection from "./IntroSection"
import PreviewImages from "./PreviewImages"
import { Rooms } from "./Rooms"
<<<<<<< HEAD
import {
AboutTheHotelSidePeek,
<<<<<<< HEAD
RoomSidePeek,
=======
AmenitiesSidePeek,
>>>>>>> de3b70ce (feat(SW-914): add correct import)
WellnessAndExerciseSidePeek,
} from "./SidePeeks"
=======
import { AboutTheHotelSidePeek, WellnessAndExerciseSidePeek } from "./SidePeeks"
>>>>>>> d2b749c0 (feat(SW-914): merge changes)
import TabNavigation from "./TabNavigation"
import styles from "./hotelPage.module.css"
@@ -185,7 +177,7 @@ export default async function HotelPage({ hotelId }: HotelPageProps) {
</>
) : null}
<SidePeekProvider>
<<<<<<< HEAD
{/* eslint-disable import/no-named-as-default-member */}
<SidePeek
contentKey={amenities[lang]}
title={intl.formatMessage({ id: "Amenities" })}
@@ -193,13 +185,6 @@ export default async function HotelPage({ hotelId }: HotelPageProps) {
{/* TODO: Render amenities as per the design. */}
Read more about the amenities here
</SidePeek>
=======
{/* eslint-disable import/no-named-as-default-member */}
<<<<<<< HEAD
<AmenitiesSidePeek amenitiesList={hotelDetailedFacilities} />
>>>>>>> de3b70ce (feat(SW-914): add correct import)
=======
>>>>>>> d2b749c0 (feat(SW-914): merge changes)
<AboutTheHotelSidePeek
hotelAddress={address}
coordinates={location}