diff --git a/apps/scandic-web/components/HotelReservation/SelectRate/HotelInfoCard/HotelDescription/index.tsx b/apps/scandic-web/components/HotelReservation/SelectRate/HotelInfoCard/HotelDescription/index.tsx index 8258b2ba1..f00f3999e 100644 --- a/apps/scandic-web/components/HotelReservation/SelectRate/HotelInfoCard/HotelDescription/index.tsx +++ b/apps/scandic-web/components/HotelReservation/SelectRate/HotelInfoCard/HotelDescription/index.tsx @@ -75,7 +75,7 @@ export default function HotelDescription({ })} hotelId={hotel.operaId} showCTA={false} - sidePeekKey={SidePeekEnum.amenities} + sidePeekKey={SidePeekEnum.hotelDetails} /> {hotel.specialAlerts.map((alert) => ( diff --git a/apps/scandic-web/components/HotelReservation/SidePeek/index.tsx b/apps/scandic-web/components/HotelReservation/SidePeek/index.tsx index 5dd897473..03172206e 100644 --- a/apps/scandic-web/components/HotelReservation/SidePeek/index.tsx +++ b/apps/scandic-web/components/HotelReservation/SidePeek/index.tsx @@ -5,7 +5,6 @@ import { useEffect } from "react" import { trpc } from "@/lib/trpc/client" import useSidePeekStore from "@/stores/sidepeek" -import AmenitiesSidePeek from "@/components/SidePeeks/AmenitiesSidePeek" import HotelSidePeek from "@/components/SidePeeks/HotelSidePeek" import RoomSidePeek from "@/components/SidePeeks/RoomSidePeek" import useLang from "@/hooks/useLang" @@ -61,23 +60,14 @@ export default function HotelReservationSidePeek() { return ( <> {hotelData && ( - <> - - - + )} {selectedRoom && ( - - - - - - - - {hotel.url ? ( - - {intl.formatMessage({ - defaultMessage: "Read more about the hotel", - })} - - ) : null} - - ) -} diff --git a/apps/scandic-web/types/components/hotelReservation/sidePeek.ts b/apps/scandic-web/types/components/hotelReservation/sidePeek.ts index 34956a2ad..bc9aa8029 100644 --- a/apps/scandic-web/types/components/hotelReservation/sidePeek.ts +++ b/apps/scandic-web/types/components/hotelReservation/sidePeek.ts @@ -1,6 +1,5 @@ export enum SidePeekEnum { hotelDetails = "hotel-detail-side-peek", - amenities = "amenities-side-peek", roomDetails = "room-detail-side-peek", bookedRoomDetails = "booked-room-detail-side-peek", }