diff --git a/src/account/payment/StripePayment.vue b/src/account/payment/StripePayment.vue index 2706c3e..86cc90c 100644 --- a/src/account/payment/StripePayment.vue +++ b/src/account/payment/StripePayment.vue @@ -1,7 +1,7 @@ @@ -21,7 +21,6 @@ ...mapState('system', ['messages']), }, created () { - console.log('StripePayment.vue: created, stripe key='+this.paymentMethod.driverConfig.publicApiKey); window.stripe = Stripe(this.paymentMethod.driverConfig.publicApiKey); this.elements = window.stripe.elements(); this.card = undefined; @@ -33,8 +32,6 @@ methods: { ...mapActions('paymentMethods', ['setPaymentInfo']), authorizeCard(e) { - console.log('authorizeCard: starting with key='+this.paymentMethod.driverConfig.publicApiKey); - // window.stripe.setPublishableKey(this.paymentMethod.driverConfig.publicApiKey); window.stripe.createToken(this.card).then(function(result) { console.log('authorizedCard: created token='+JSON.stringify(result.token)); if (result.error) {