fix(donate): update default donation amounts

Closes #37787
This commit is contained in:
Mrugesh Mohapatra
2019-11-20 11:47:46 +05:30
committed by mrugesh
parent c25fa49b5b
commit 65e5b26fa1
2 changed files with 9 additions and 2 deletions

View File

@ -9,8 +9,13 @@ const amountsConfig = {
month: [5000, 3500, 500],
onetime: [100000, 25000, 3500]
};
const defaultAmount = {
year: 25000,
month: 3500,
onetime: 25000
};
const defaultStateConfig = {
donationAmount: 5000,
donationAmount: defaultAmount['month'],
donationDuration: 'month',
paymentType: 'Card'
};
@ -32,6 +37,7 @@ const donationSubscriptionConfig = {
module.exports = {
durationsConfig,
amountsConfig,
defaultAmount,
defaultStateConfig,
durationKeysConfig,
donationOneTimeConfig,