fix: add hotel header to enter details flow

This commit is contained in:
Christel Westerberg
2024-11-27 13:23:36 +01:00
parent 6f8092d6ec
commit f5990998db
9 changed files with 128 additions and 95 deletions

View File

@@ -3,5 +3,5 @@ import type { RouterOutput } from "@/lib/trpc/client"
type HotelDataGet = RouterOutput["hotel"]["hotelData"]["get"]
export interface HotelHeaderProps {
hotel: NonNullable<HotelDataGet>["data"]["attributes"]
hotelData: NonNullable<HotelDataGet>
}

View File

@@ -1,4 +1,4 @@
export type ToggleSidePeekProps = {
hotelId: string
roomTypeCode: string
roomTypeCode?: string
}