Skip to content

Commit

Permalink
fix: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-kalachikov committed Oct 1, 2024
1 parent f1e259f commit e2b108f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions client-app/pages/cart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,8 @@ async function handleRemoveItems(itemIds: string[]): Promise<void> {
function handleSelectItems(value: { itemIds: string[]; selected: boolean }) {
if (!value.selected) {
console.log("unselect", value.itemIds);
unselectCartItems(value.itemIds);
} else {
console.log("select", value.itemIds);
selectCartItems(value.itemIds);
}
}
Expand Down

0 comments on commit e2b108f

Please sign in to comment.