From bac245ce8cedb4d83f3498b885ef490e1d27b41d Mon Sep 17 00:00:00 2001 From: Net Date: Tue, 20 Aug 2024 18:00:21 +0700 Subject: [PATCH] refactor: Delete unused values. --- src/pages/03_customer-management/BranchPage.vue | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/src/pages/03_customer-management/BranchPage.vue b/src/pages/03_customer-management/BranchPage.vue index 3227c8dc..0d12db4f 100644 --- a/src/pages/03_customer-management/BranchPage.vue +++ b/src/pages/03_customer-management/BranchPage.vue @@ -52,7 +52,6 @@ const { const inputSearch = ref(''); const branch = defineModel('branch'); -const currentCustomerName = defineModel('currentCustomerName'); const modeView = defineModel('modeView'); const currentCustomerUrlImage = defineModel( @@ -72,7 +71,7 @@ const pageSizeBranch = ref(30); const prop = withDefaults( defineProps<{ color?: 'purple' | 'green'; - + currentCustomerName?: string; customerType: CustomerType; }>(), { @@ -526,20 +525,17 @@ watch([customerId, inputSearch, currentStatus], async () => {