From 78600be0ea2b457c18da5ba0babb75335a29b976 Mon Sep 17 00:00:00 2001 From: puriphatt Date: Wed, 3 Jul 2024 02:27:18 +0000 Subject: [PATCH] fix: remove log --- src/components/03_customer-management/CustomerInfoComponent.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/03_customer-management/CustomerInfoComponent.vue b/src/components/03_customer-management/CustomerInfoComponent.vue index 3788e0e1..37833050 100644 --- a/src/components/03_customer-management/CustomerInfoComponent.vue +++ b/src/components/03_customer-management/CustomerInfoComponent.vue @@ -69,8 +69,6 @@ async function fetchList() { totalBranch.value = result.total; maxPageBranch.value = Math.ceil(result.total / pageSizeBranch.value); branch.value = result.result; - - console.log(branch.value); } }