feat(SW-589): Added correct breakfastMessage, also fixed some small issues

This commit is contained in:
Pontus Dreij
2024-11-18 15:22:13 +01:00
committed by Joakim Jäderberg
parent bdbdfa80ab
commit dac345371b
9 changed files with 34 additions and 16 deletions

View File

@@ -136,7 +136,7 @@ export default function HotelCard({
{hotelData.specialAlerts.length > 0 && (
<div className={styles.specialAlerts}>
{hotelData.specialAlerts.map((alert) => (
<Alert key={alert.id} type={alert.type} text={alert.text} />
<Alert key={alert.id} type={alert.type} text={alert.heading} />
))}
</div>
)}