aboutsummaryrefslogtreecommitdiff
path: root/client/src/store/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/store/index.js')
-rw-r--r--client/src/store/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/store/index.js b/client/src/store/index.js
index 086c544..519347d 100644
--- a/client/src/store/index.js
+++ b/client/src/store/index.js
@@ -58,8 +58,8 @@ export default createStore({
quantity: 1
});
},
- removeFromCart(state) {
- let foundProduct = state.cart.find(x => x.id == state.currentProduct._id);
+ removeFromCart(state, productId) {
+ let foundProduct = state.cart.find(x => x.id == productId);
if (foundProduct) {
foundProduct.quantity--;
if (foundProduct.quantity == 0)