feat(SW-750): fix typo

This commit is contained in:
Fredrik Thorsson
2024-11-19 16:43:53 +01:00
parent cbc8081676
commit 1881f6646d
4 changed files with 7 additions and 7 deletions

View File

@@ -16,7 +16,7 @@ import {
} from "@/types/components/hotelPage/sidepeek/contactInformation"
export default async function ContactInformation({
hotelAdress,
hotelAddress,
coordinates,
contact,
socials,
@@ -36,8 +36,8 @@ export default async function ContactInformation({
<Body textTransform="bold">
{intl.formatMessage({ id: "Address" })}
</Body>
<Body color="uiTextHighContrast">{hotelAdress.streetAddress}</Body>
<Body color="uiTextHighContrast">{hotelAdress.city}</Body>
<Body color="uiTextHighContrast">{hotelAddress.streetAddress}</Body>
<Body color="uiTextHighContrast">{hotelAddress.city}</Body>
</div>
<div className={styles.drivingDirections}>
<Body textTransform="bold">

View File

@@ -14,7 +14,7 @@ import styles from "./aboutTheHotel.module.css"
import type { AboutTheHotelSidePeekProps } from "@/types/components/hotelPage/sidepeek/aboutTheHotel"
export default async function AboutTheHotelSidePeek({
hotelAdress,
hotelAddress,
coordinates,
contact,
socials,
@@ -31,7 +31,7 @@ export default async function AboutTheHotelSidePeek({
>
<section className={styles.wrapper}>
<ContactInformation
hotelAdress={hotelAdress}
hotelAddress={hotelAddress}
coordinates={coordinates}
contact={contact}
socials={socials}

View File

@@ -139,7 +139,7 @@ export default async function HotelPage() {
Read more about the amenities here
</SidePeek>
<AboutTheHotelSidePeek
hotelAdress={hotelAddress}
hotelAddress={hotelAddress}
coordinates={coordinates}
contact={contact}
socials={socials}