fix: handle children in enter details

This commit is contained in:
Christel Westerberg
2024-11-04 15:46:54 +01:00
parent 461cabab22
commit 77d65df931
8 changed files with 80 additions and 50 deletions

View File

@@ -1,5 +1,7 @@
import { BedTypeEnum } from "../../bookingWidget/enums"
interface Child {
bed: string
bed: BedTypeEnum
age: number
}

View File

@@ -1,7 +1,9 @@
import { Product, RoomConfiguration } from "@/server/routers/hotels/output"
import { BedTypeEnum } from "../../bookingWidget/enums"
export interface Child {
bed: string
bed: BedTypeEnum
age: number
}