forgot format float
This commit is contained in:
parent
cefb5e1c8e
commit
5a21d1a1da
@ -104,9 +104,11 @@ export default function SubscribeCheckoutTicket(props: IProps) {
|
||||
</Typography>
|
||||
{paymentFrequency === EPaymentFrequency.yearly && (
|
||||
<Typography typo={ITypo.CAPTION_14_SB} color={ITypoColor.BLACK}>
|
||||
{forfeitType === EForfeitType.standard
|
||||
? forfeitsPrices[EForfeitType.standard]
|
||||
: forfeitsPrices[EForfeitType.unlimited]}
|
||||
{formatFloat(
|
||||
forfeitType === EForfeitType.standard
|
||||
? forfeitsPrices[EForfeitType.standard]
|
||||
: forfeitsPrices[EForfeitType.unlimited],
|
||||
)}
|
||||
€ x 11
|
||||
</Typography>
|
||||
)}
|
||||
@ -118,9 +120,11 @@ export default function SubscribeCheckoutTicket(props: IProps) {
|
||||
</Typography>
|
||||
{paymentFrequency === EPaymentFrequency.yearly && (
|
||||
<Typography typo={ITypo.P_16} color={ITypoColor.BLACK} className={classes["stroked-price"]}>
|
||||
{forfeitType === EForfeitType.standard
|
||||
? forfeitsPrices[EForfeitType.standard] * multiplier
|
||||
: forfeitsPrices[EForfeitType.unlimited] * multiplier}
|
||||
{formatFloat(
|
||||
forfeitType === EForfeitType.standard
|
||||
? forfeitsPrices[EForfeitType.standard] * multiplier
|
||||
: forfeitsPrices[EForfeitType.unlimited] * multiplier,
|
||||
)}
|
||||
€
|
||||
</Typography>
|
||||
)}
|
||||
|
Loading…
x
Reference in New Issue
Block a user