diff --git a/_dev/js/theme/core/cart/handler/cart/cartErrorsHandler.js b/_dev/js/theme/core/cart/handler/cart/cartErrorsHandler.js index c179280c..29aa0377 100644 --- a/_dev/js/theme/core/cart/handler/cart/cartErrorsHandler.js +++ b/_dev/js/theme/core/cart/handler/cart/cartErrorsHandler.js @@ -56,6 +56,6 @@ const cartErrorsHandler = () => { checkoutBtn.classList.remove('disabled'); } -} +}; export default cartErrorsHandler; diff --git a/_dev/js/theme/core/cart/store/cartStateStore.js b/_dev/js/theme/core/cart/store/cartStateStore.js index 2c50b96d..d23f847b 100644 --- a/_dev/js/theme/core/cart/store/cartStateStore.js +++ b/_dev/js/theme/core/cart/store/cartStateStore.js @@ -10,7 +10,6 @@ const state = { * @returns {object} */ const cartStateStore = () => { - /** * Sets the error message * @method setErrorMsg @@ -19,7 +18,7 @@ const cartStateStore = () => { */ const setErrorMsg = (value) => { state.errorMsg = value; - } + }; /** * Returns the error message @@ -37,7 +36,7 @@ const cartStateStore = () => { */ const setIsUpdateOperation = (value) => { state.isUpdateOperation = value; - } + }; /** * Returns the isUpdateOperation value @@ -55,7 +54,7 @@ const cartStateStore = () => { */ const setHasError = (value) => { state.hasError = value; - } + }; /** * Returns the hasError value @@ -72,7 +71,7 @@ const cartStateStore = () => { getIsUpdateOperation, setHasError, getHasError, - } -} + }; +}; export default cartStateStore; diff --git a/_dev/js/theme/core/product/productController.js b/_dev/js/theme/core/product/productController.js index acd614c0..2b974c8b 100644 --- a/_dev/js/theme/core/product/productController.js +++ b/_dev/js/theme/core/product/productController.js @@ -31,7 +31,6 @@ const persistFormDataOnInit = () => { * @return {{init: init}} */ const productController = () => { - /** * Init product controller * @method init