fix: make summary sticky

This commit is contained in:
Christel Westerberg
2024-10-25 11:09:03 +02:00
parent 7954c704d9
commit 7710d3f8f9
16 changed files with 170 additions and 107 deletions

View File

@@ -5,7 +5,7 @@ interface Child {
interface Room {
adults: number
roomtypecode?: string
roomtype?: string
ratecode?: string
child?: Child[]
}
@@ -18,7 +18,8 @@ export interface BookingData {
export type RoomsData = {
roomType: string
price: string
localPrice: string
euroPrice: string
adults: number
children?: Child[]
cancellationText: string

View File

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