feat(SW-914): fix typos

This commit is contained in:
Fredrik Thorsson
2024-11-20 14:08:29 +01:00
parent 69e285d449
commit 55628f903a
2 changed files with 4 additions and 4 deletions

View File

@@ -9,12 +9,12 @@ import { getLang } from "@/i18n/serverContext"
import { mapFacilityToIconName } from "../../data" import { mapFacilityToIconName } from "../../data"
import Amenity from "./Amenity" import Amenity from "./Amenity"
import type { AmenitiesSidepeekProps } from "@/types/components/hotelPage/sidepeek/amenities" import type { AmenitiesSidePeekProps } from "@/types/components/hotelPage/sidepeek/amenities"
import { IconName } from "@/types/components/icon" import { IconName } from "@/types/components/icon"
export default async function AmenitiesSidepeek({ export default async function AmenitiesSidePeek({
amenitiesList, amenitiesList,
}: AmenitiesSidepeekProps) { }: AmenitiesSidePeekProps) {
const lang = getLang() const lang = getLang()
const intl = await getIntl() const intl = await getIntl()
return ( return (

View File

@@ -1,5 +1,5 @@
import type { Hotel } from "@/types/hotel" import type { Hotel } from "@/types/hotel"
export type AmenitiesSidepeekProps = { export type AmenitiesSidePeekProps = {
amenitiesList: Hotel["detailedFacilities"] amenitiesList: Hotel["detailedFacilities"]
} }