feat: block all entries to enter details that miss the required params

This commit is contained in:
Simon Emanuelsson
2024-10-31 14:07:59 +01:00
parent 3b75231eee
commit 4513828ae7
4 changed files with 169 additions and 46 deletions

View File

@@ -7,8 +7,8 @@ export interface Child {
interface Room {
adults: number
roomtype?: string
ratecode?: string
roomtype: string
ratecode: string
counterratecode?: string
child?: Child[]
}