feat(SW-750): fix typo
This commit is contained in:
@@ -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">
|
||||||
|
|||||||
@@ -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}
|
||||||
|
|||||||
@@ -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}
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user