remove console log

This commit is contained in:
harshjagad20
2022-06-10 12:42:08 +05:30
parent 05abf7fa74
commit e4bd002fae
2 changed files with 0 additions and 2 deletions

View File

@ -478,7 +478,6 @@ function syncItemToStore() {
if (!itemTaxes) {
itemTaxes = []
}
console.log('syncItemToStore', itemTaxes)
let data = {
...props.store[props.storeProp].items[props.index],

View File

@ -263,7 +263,6 @@ const itemWiseTaxes = computed(() => {
if (found) {
found.amount += tax.amount
} else if (tax.tax_type_id) {
console.log(tax, 'getting the tax here')
taxes.push({
tax_type_id: tax.tax_type_id,
amount: tax.amount,