fix: update friendTransaction model according to API

This commit is contained in:
Arvid Norlin
2024-05-15 14:01:19 +02:00
parent 9ef9de840c
commit 795fe400cb
4 changed files with 76 additions and 70 deletions

View File

@@ -5,11 +5,11 @@ export type EarnAndBurnProps = {
}
type Transaction = {
checkInDate: string
checkOutDate: string
checkinDate: string
checkoutDate: string
awardPoints: number
hotelName: string
city: string
hotelName?: string
city?: string
nights: number
confirmationNumber: string
}
@@ -22,11 +22,11 @@ export type Page = {
export type RowProps = {
lang: Lang
transaction: {
checkInDate: string
checkOutDate: string
checkinDate: string
checkoutDate: string
awardPoints: number
hotelName: string
city: string
hotelName?: string
city?: string
nights: number
confirmationNumber: string
}