fix: refacotr away optional pricing

This commit is contained in:
Christel Westerberg
2024-11-12 08:57:45 +01:00
parent 5e2d2abd17
commit 32d12bae58
5 changed files with 25 additions and 26 deletions

View File

@@ -16,8 +16,8 @@ export interface BookingData {
}
type Price = {
price?: string
currency?: string
price: string
currency: string
}
export type RoomsData = {