diff --git a/2021-05-05_vuex-11-a-challenge-starting-code/src/store/modules/cart/mutations.js b/2021-05-05_vuex-11-a-challenge-starting-code/src/store/modules/cart/mutations.js index 7bd33d0..f28cced 100644 --- a/2021-05-05_vuex-11-a-challenge-starting-code/src/store/modules/cart/mutations.js +++ b/2021-05-05_vuex-11-a-challenge-starting-code/src/store/modules/cart/mutations.js @@ -28,5 +28,5 @@ export default { state.items.splice(productInCartIndex, 1); state.qty -= prodData.qty; state.total -= prodData.price * prodData.qty; - }, + } };