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

View File

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

View File

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

View File

@@ -1,7 +1,7 @@
import type { Hotel, HotelAddress } from "@/types/hotel" import type { Hotel, HotelAddress } from "@/types/hotel"
export type AboutTheHotelSidePeekProps = { export type AboutTheHotelSidePeekProps = {
hotelAdress: HotelAddress hotelAddress: HotelAddress
coordinates: { coordinates: {
lat: number lat: number
lng: number lng: number