feat: change class name

This commit is contained in:
Fredrik Thorsson
2024-07-05 15:32:28 +02:00
parent 2f1f81530a
commit 7f69ba536b
2 changed files with 2 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ export default function HotelCard({ hotel }: HotelCardData) {
<span>{hotel.address}</span>
<span>{hotel.description}</span>
</div>
<div className={styles.labels}>
<div className={styles.chips}>
{hotel.label.map((chip, index) => (
<Chip key={`chip-${index}`}>{chip}</Chip>
))}