feat(SW-718): fix comments

This commit is contained in:
Pontus Dreij
2025-01-27 09:29:34 +01:00
parent 22fe34d5c0
commit bfdc62d263
8 changed files with 134 additions and 46 deletions

View File

@@ -3,7 +3,6 @@ import type { RoomPackageData } from "./roomFilter"
import type { Rate } from "./selectRate"
export interface RateSummaryProps {
rateSummary: Rate[]
isUserLoggedIn: boolean
packages: RoomPackageData | undefined
roomsAvailability: RoomsAvailability

View File

@@ -1,5 +1,6 @@
import type { CreditCard, SafeUser } from "@/types/user"
import type { PaymentMethodEnum } from "@/constants/booking"
import type { Child } from "./selectRate"
export interface SectionProps {
nextPath: string
@@ -43,7 +44,7 @@ export interface PaymentClientProps
export interface RoomParam {
adults: number
children?: { age: number; bed: number }[]
children?: Child[]
}
export interface SectionPageProps {