From fa9b59680f4ce4d58fbffd62a084db016bbc3fac Mon Sep 17 00:00:00 2001 From: Thanaphon Frappet Date: Wed, 18 Dec 2024 10:57:05 +0700 Subject: [PATCH] cleanup: --- src/pages/05_quotation/QuotationForm.vue | 1 - src/stores/payment/index.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/src/pages/05_quotation/QuotationForm.vue b/src/pages/05_quotation/QuotationForm.vue index b3007e8f..798a7e53 100644 --- a/src/pages/05_quotation/QuotationForm.vue +++ b/src/pages/05_quotation/QuotationForm.vue @@ -2022,7 +2022,6 @@ async function exampleReceipt(id: string) { " @example=" () => { - console.log(v); exampleReceipt(v.id); } " diff --git a/src/stores/payment/index.ts b/src/stores/payment/index.ts index 9d63f426..4b5b716d 100644 --- a/src/stores/payment/index.ts +++ b/src/stores/payment/index.ts @@ -28,7 +28,6 @@ export const usePayment = defineStore('payment-store', () => { `/payment/${id}/flow-account`, ); if (res.status >= 400) return null; - console.log(res); return res.data; }