From 4a7120983be6a5d0475206f23e67b43a5c28a49e Mon Sep 17 00:00:00 2001 From: amansinghbais Date: Tue, 12 Nov 2024 18:19:25 +0530 Subject: [PATCH] Reverted: unwanted async keyword from the code (#507) --- src/views/CountDetail.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/CountDetail.vue b/src/views/CountDetail.vue index 4b66a8b0..f2bb4ea4 100644 --- a/src/views/CountDetail.vue +++ b/src/views/CountDetail.vue @@ -577,7 +577,7 @@ async function openRecountAlert() { }, { text: translate('Re-count'), - handler: async () => { + handler: () => { inputCount.value = product.value.quantity; product.value.isRecounting = true; }