From 3c71c71df15792a4283d3b80d9941668b877c07c Mon Sep 17 00:00:00 2001 From: wbuezas Date: Thu, 12 Sep 2024 08:14:32 -0300 Subject: [PATCH] remove console.log --- src/stores/tpv.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/stores/tpv.js b/src/stores/tpv.js index 7fb92c50..53f146c2 100644 --- a/src/stores/tpv.js +++ b/src/stores/tpv.js @@ -24,8 +24,6 @@ export const tpvStore = defineStore('tpv', { }, async pay(amount, company) { - console.log('pay amount', amount); - console.log('pay company', company); await this.realPay(amount * 100, company); }, @@ -41,8 +39,6 @@ export const tpvStore = defineStore('tpv', { }, async realPay(amount, company) { - console.log('realPay amount', amount); - console.log('realPay company', company); if (!isNumeric(amount) || amount <= 0) { throw new Error('payAmountError'); }