Skip to content

Commit

Permalink
Modules/store/js: Fix minor bug to prevent errors reaching the console
Browse files Browse the repository at this point in the history
  • Loading branch information
Darksider committed Apr 9, 2024
1 parent 9c630dd commit f00cbe8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions application/modules/store/js/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,6 @@ var Store = {
{
$(this).attr("data-available", "0");
Store.Cart.list[i].character = $(this).val();
console.log(Store.Cart.list[i].character)
}
});
}
Expand All @@ -706,7 +705,7 @@ var Store = {
Store.Cart.dpCost = 0;
Store.Cart.count = 0;

Store.updatePrice();
Store.Cart.updatePrice();
$("#cart_item_count").html('0');
});
});
Expand Down

0 comments on commit f00cbe8

Please sign in to comment.