fix: remove currency symbol to avoid double currency symbol with some upgrade buttons (#448)

This commit is contained in:
Matthew Piatetsky
2021-05-14 09:48:50 -04:00
committed by GitHub
parent b1fdbcccf3
commit d8243d6ea8
3 changed files with 11 additions and 11 deletions

View File

@@ -53,7 +53,7 @@ function FormattedPricing(props) {
{intl.formatMessage(messages.srPrices, { discountedPrice, originalPrice })}
</span>
<span aria-hidden="true">
<span>{currencySymbol}{discountedPrice}</span> (<del>{currencySymbol}{originalPrice}</del>)
<span>{discountedPrice}</span> (<del>{originalPrice}</del>)
</span>
</>
);