From fc1423c315f2562f643586f8817f5f7906f9ec8d Mon Sep 17 00:00:00 2001 From: Rafael Escala Date: Mon, 5 Feb 2018 17:04:42 -0500 Subject: [PATCH] Updated the Stripe config message error --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 38a7e93..d252428 100644 --- a/app.js +++ b/app.js @@ -39,7 +39,7 @@ if(config.paymentGateway === 'paypal'){ if(config.paymentGateway === 'stripe'){ const stripeConfig = ajv.validate(require('./config/stripeSchema'), require('./config/stripe.json')); if(stripeConfig === false){ - console.log(colors.red(`PayPal config is incorrect: ${ajv.errorsText()}`)); + console.log(colors.red(`Stripe config is incorrect: ${ajv.errorsText()}`)); process.exit(2); } }