diff --git a/.npmrc b/.npmrc
deleted file mode 100644
index cf040424..00000000
--- a/.npmrc
+++ /dev/null
@@ -1,2 +0,0 @@
-shamefully-hoist=true
-strict-peer-dependencies=false
diff --git a/components/Cart/CartItem.vue b/components/Cart/CartItem.vue
index ef386e78..7dd7a715 100644
--- a/components/Cart/CartItem.vue
+++ b/components/Cart/CartItem.vue
@@ -77,7 +77,7 @@ watch(
() => props.product.quantity,
(newVal) => {
localQuantity.value = newVal;
- }
+ },
);
const emit = defineEmits(["remove", "update-quantity"]);
diff --git a/components/Category/CategoryShowAll.vue b/components/Category/CategoryShowAll.vue
index 456806a7..3beb1a3c 100644
--- a/components/Category/CategoryShowAll.vue
+++ b/components/Category/CategoryShowAll.vue
@@ -36,7 +36,7 @@
const props = defineProps({
categories: {
type: Object,
- required: true
- }
+ required: true,
+ },
});
diff --git a/components/Products/ProductsSingleProduct.vue b/components/Products/ProductsSingleProduct.vue
index 2419b06d..2afb5e28 100644
--- a/components/Products/ProductsSingleProduct.vue
+++ b/components/Products/ProductsSingleProduct.vue
@@ -100,7 +100,7 @@ watch(
selectedVariation.value = productValue.variations?.nodes[0].databaseId;
}
},
- { immediate: true }
+ { immediate: true },
);
/**
diff --git a/components/common/CommonInput.vue b/components/common/CommonInput.vue
index 5bddff3a..fe2e30d0 100644
--- a/components/common/CommonInput.vue
+++ b/components/common/CommonInput.vue
@@ -6,7 +6,9 @@
:disabled="loading || value <= min"
@click="updateValue(value - 1)"
type="button"
- >-
+ >
+ -
+
+
+ >
+ +
+
diff --git a/components/common/CommonToast.vue b/components/common/CommonToast.vue
index 73e37cd2..12589bd1 100644
--- a/components/common/CommonToast.vue
+++ b/components/common/CommonToast.vue
@@ -60,7 +60,7 @@ defineExpose({ show });
.toast-enter-from,
.toast-leave-to {
opacity: 0;
- transform: translateX(30px);
+ transform: translateX(30px);
}
.toast-enter-to,
diff --git a/pages/categories.vue b/pages/categories.vue
index 6c3035b3..cf55cfa0 100644
--- a/pages/categories.vue
+++ b/pages/categories.vue
@@ -7,7 +7,10 @@