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

fix(subscription-prompt): calculate correct discount for USA customers #537

Merged
merged 1 commit into from Oct 4, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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