From 67013c9f2ec353c7f3c687994dd78a1c3106d8b0 Mon Sep 17 00:00:00 2001 From: amansinghbais Date: Tue, 5 Nov 2024 13:20:18 +0530 Subject: [PATCH] Reverted: unwanted getter for getting barcode identification value (#412) --- src/store/modules/util/getters.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/store/modules/util/getters.ts b/src/store/modules/util/getters.ts index 39723a4e..f00443b3 100644 --- a/src/store/modules/util/getters.ts +++ b/src/store/modules/util/getters.ts @@ -16,11 +16,6 @@ const getters: GetterTree = { }, getBarcodeIdentificationPref(state) { return state.barcodeIdentificationPref - }, - getBarcodeIdentificationValue(state, getters, rootState, rootGetters) { - const productIdentificationStore = useProductIdentificationStore(); - const productIdentificationPref = computed(() => productIdentificationStore.getProductIdentificationPref) as any; - return productIdentificationPref.value[state.barcodeIdentificationPref] } } export default getters; \ No newline at end of file