fix: avoid localizing currencies and default missing value to N/A
This commit is contained in:
@@ -29,7 +29,7 @@ export type HotelPin = {
|
||||
coordinates: Coordinates
|
||||
publicPrice: number | null
|
||||
memberPrice: number | null
|
||||
currency: string | null
|
||||
currency: string
|
||||
images: {
|
||||
imageSizes: ImageSizes
|
||||
metaData: ImageMetaData
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
import type { CurrencyEnum } from "@/types/enums/currency"
|
||||
|
||||
export interface SignupPromoProps {
|
||||
memberPrice: {
|
||||
amount: number
|
||||
currency: CurrencyEnum
|
||||
currency: string
|
||||
}
|
||||
badgeContent?: string
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user