mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
parent
1f90cf7ea9
commit
eb189c8045
1 changed files with 2 additions and 2 deletions
|
@ -80,8 +80,8 @@ const TierDetailPreview: React.FC<TierDetailPreviewProps> = ({tier, isFreeTier})
|
|||
const currencySymbol = currency ? getSymbol(currency) : '$';
|
||||
const benefits = tier?.benefits || [];
|
||||
|
||||
const monthlyPrice = currencyToDecimal(tier?.monthly_price || 0);
|
||||
const yearlyPrice = currencyToDecimal(tier?.yearly_price || 0);
|
||||
const monthlyPrice = currencyToDecimal(tier?.monthly_price ?? 500);
|
||||
const yearlyPrice = currencyToDecimal(tier?.yearly_price ?? 5000);
|
||||
const yearlyDiscount = tier?.monthly_price && tier?.yearly_price
|
||||
? Math.ceil(((monthlyPrice * 12 - yearlyPrice) / (monthlyPrice * 12)) * 100)
|
||||
: 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue