Merged in fix/hotel-page-secitons-order (pull request #2860)
fix: correct the order of sections on hotel page * fix: correct the order of sections Approved-by: Erik Tiekstra
This commit is contained in:
@@ -227,10 +227,6 @@ export default async function HotelPage({ hotelId }: HotelPageProps) {
|
||||
healthFacilities={healthFacilities}
|
||||
/>
|
||||
)}
|
||||
{faq && faq.accordions.length > 0 && (
|
||||
<AccordionSection accordion={faq.accordions} title={faq.title} />
|
||||
)}
|
||||
|
||||
{campaignsBlock ? (
|
||||
<HotelCampaigns
|
||||
heading={campaignsBlock.heading}
|
||||
@@ -238,6 +234,9 @@ export default async function HotelPage({ hotelId }: HotelPageProps) {
|
||||
campaigns={campaignsBlock.campaigns}
|
||||
/>
|
||||
) : null}
|
||||
{faq && faq.accordions.length > 0 && (
|
||||
<AccordionSection accordion={faq.accordions} title={faq.title} />
|
||||
)}
|
||||
</main>
|
||||
<aside className={styles.mapContainer}>
|
||||
<MapWithCardWrapper>
|
||||
|
||||
Reference in New Issue
Block a user