From 79e87dbcf347b50116b202e017ccf1f8f63db32f Mon Sep 17 00:00:00 2001 From: Benoit Schweblin Date: Tue, 17 Jul 2018 21:01:17 +0100 Subject: [PATCH] Fixed paypal buttons --- server/user.js | 2 +- src/components/modals/SponsorModal.vue | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/server/user.js b/server/user.js index f1782c71..bbe89766 100644 --- a/server/user.js +++ b/server/user.js @@ -4,7 +4,7 @@ const verifier = require('google-id-token-verifier'); const BUCKET_NAME = process.env.USER_BUCKET_NAME || 'stackedit-users'; const PAYPAL_URI = process.env.PAYPAL_URI || 'https://www.paypal.com/cgi-bin/webscr'; -const PAYPAL_RECEIVER_EMAIL = process.env.PAYPAL_RECEIVER_EMAIL || 'stackedit.sales@gmail.com'; +const PAYPAL_RECEIVER_EMAIL = process.env.PAYPAL_RECEIVER_EMAIL || 'stackedit.project@gmail.com'; const GOOGLE_CLIENT_ID = process.env.GOOGLE_CLIENT_ID; const s3Client = new AWS.S3(); diff --git a/src/components/modals/SponsorModal.vue b/src/components/modals/SponsorModal.vue index 2175347c..73ba46bc 100644 --- a/src/components/modals/SponsorModal.vue +++ b/src/components/modals/SponsorModal.vue @@ -43,10 +43,10 @@ export default { return { buttons: sponsorToken ? [ - makeButton('EZM658LWLLG6C', '$5', '3 months sponsorship'), - makeButton('EL2GN2LPZGBJ4', '$15', '1 year sponsorship', '-25%'), - makeButton('3FH26ATC3M48A', '$25', '2 years sponsorship', '-37%'), - makeButton('PY8WT7L3M4KSY', '$50', '5 years sponsorship', '-50%'), + makeButton('TDAPH47B3J2JW', '$5', '3 months sponsorship'), + makeButton('6CTKPKF8868UA', '$15', '1 year sponsorship', '-25%'), + makeButton('A5ZDYW6SYDLBE', '$25', '2 years sponsorship', '-37%'), + makeButton('3DMD3TT2RDPQA', '$50', '5 years sponsorship', '-50%'), ] : [], }; },