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" export { default as AboutTheHotelSidePeek } from "./AboutTheHotel"
<<<<<<< HEAD
<<<<<<< HEAD
export { default as RoomSidePeek } from "./Room" 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" export { default as WellnessAndExerciseSidePeek } from "./WellnessAndExercise"

View File

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