From d4a2999de7a7920fb0945ebdb0bfc0219342ef06 Mon Sep 17 00:00:00 2001 From: Methapon Metanipat Date: Mon, 28 Oct 2024 09:43:33 +0700 Subject: [PATCH] chore: remove unused --- src/pages/05_quotation/QuotationForm.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/05_quotation/QuotationForm.vue b/src/pages/05_quotation/QuotationForm.vue index 607f8373..2b6d53c4 100644 --- a/src/pages/05_quotation/QuotationForm.vue +++ b/src/pages/05_quotation/QuotationForm.vue @@ -265,7 +265,7 @@ async function assignToProductServiceList() { } } -async function submitAccepted(id: string) { +async function submitAccepted() { dialog({ color: 'info', icon: 'mdi-account-check', @@ -276,7 +276,7 @@ async function submitAccepted(id: string) { action: async () => { if (!quotationFormData.value.id) return; - const rse = await quotationForm.accepted(quotationFormData.value.id); + await quotationForm.accepted(quotationFormData.value.id); }, cancel: () => {}, });