Skip to content

Commit

Permalink
Fix spacing issue with billing timeframe on cloud backup upsell (#97188)
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeyGuyDylan authored Dec 6, 2024
1 parent 150e657 commit 17afd38
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const UpsellPrice: React.FC< UpsellPriceProps > = ( {
const billingTerm = upsellSlug?.displayTerm || upsellSlug?.term || 'TERM_MONTHLY';
return (
<span className={ priceClass }>
<PlanPrice displayFlatPrice rawPrice={ originalPrice } currencyCode={ currencyCode } />
<PlanPrice displayFlatPrice rawPrice={ originalPrice } currencyCode={ currencyCode } />{ ' ' }
<TimeFrame billingTerm={ billingTerm } />
</span>
);
Expand Down

0 comments on commit 17afd38

Please sign in to comment.