diff --git a/components/SidePeeks/HotelSidePeek/index.tsx b/components/SidePeeks/HotelSidePeek/index.tsx index 481db8564..8664ace88 100644 --- a/components/SidePeeks/HotelSidePeek/index.tsx +++ b/components/SidePeeks/HotelSidePeek/index.tsx @@ -31,6 +31,8 @@ export default function HotelSidePeek({ const intl = useIntl() const amenitiesList = getAmenitiesList(hotel) + const isSelectHotelPage = window.location.href.includes("select-hotel") + return ( ) : null} - - TODO: What content should be in the accessibility section? - +
+ {intl.formatMessage({ id: "Accessibility" })} +
{amenitiesList.map((amenity) => { return (
@@ -62,8 +64,10 @@ export default function HotelSidePeek({ ) })} - {/* TODO: handle linking to Hotel Page */} - + {isSelectHotelPage && ( + /* TODO: handle linking to Hotel Page */ + + )}
)