Skip to content

Commit

Permalink
fix: remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
raphodn committed Jun 27, 2024
1 parent d189704 commit 075ffae
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/components/ProductInputRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,6 @@ export default {
.getProductByCode(code)
.then((data) => {
this.productForm.product = data.id ? data : {'code': code, 'price_count': 0}
console.log(this.productForm.product)
})
.catch((error) => { // eslint-disable-line no-unused-vars
alert("Error: Open Prices server error")
Expand Down
1 change: 0 additions & 1 deletion src/services/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ function filterBodyWithAllowedKeys(data, allowedKeys) {
filteredData[key] = data[key]
}
}
console.log(data, filteredData)
return filteredData
}

Expand Down
1 change: 0 additions & 1 deletion src/views/AddPriceSingle.vue
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,6 @@ export default {
.getProductByCode(code)
.then((data) => {
this.addPriceSingleForm.product = data.id ? data : {'code': code, 'price_count': 0}
console.log(this.addPriceSingleForm.product)
})
.catch((error) => { // eslint-disable-line no-unused-vars
alert('Error: Open Prices server error')
Expand Down

0 comments on commit 075ffae

Please sign in to comment.