Skip to content
This repository has been archived by the owner on Apr 1, 2020. It is now read-only.

Commit

Permalink
Merge pull request #537 from Financial-Times/subscription-prompt-fix-…
Browse files Browse the repository at this point in the history
…usa-price

fix(subscription-prompt): calculate correct discount for USA customers
  • Loading branch information
keithamus committed Oct 4, 2016
2 parents 53a2e7d + 2e25d35 commit fd087d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subscription-offer-prompt/index.js
Expand Up @@ -89,7 +89,7 @@ function getSubscriptionPromptValues () {
case 'SGP': return { discount: 25, offerId: 'c1773439-53dc-df3d-9acc-20ce2ecde318', price: toCurrency(619, 'SGP') };
// United States Minor Outlying Islands / United States of America
case 'UMI':
case 'USA': return { discount: 33, offerId: 'a9582121-87c2-09a7-0cc0-4caf594985d5', price: toCurrency(470, 'USD') };
case 'USA': return { discount: 33, offerId: 'a9582121-87c2-09a7-0cc0-4caf594985d5', price: toCurrency(429, 'USD') };
// European countries
case 'DEU':
case 'FRA':
Expand Down

0 comments on commit fd087d0

Please sign in to comment.