From 30146d641181e4abe478660c82cdfd3e650e01ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaume=20Sol=C3=ADs?= Date: Thu, 18 Apr 2024 14:03:09 +0200 Subject: [PATCH] revision --- src/stores/cart.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/stores/cart.js b/src/stores/cart.js index e759d1d..046bb46 100644 --- a/src/stores/cart.js +++ b/src/stores/cart.js @@ -1,5 +1,5 @@ import { defineStore, storeToRefs } from "pinia"; -import { ref } from "vue"; +import { computed, ref } from "vue"; import { useRouter } from "vue-router"; import { apiBack } from "src/boot/axios"; @@ -194,9 +194,8 @@ export const useCartStore = defineStore("cart", () => { const params = transformOptionsToParams( availabilityForm.value || availability.value ); - const correctProduct = await apiBack.get(`products/${product.id}`, { params }); - console.log(hasCurrentProduct) - await getProducts(params); + const { correctProduct: { data }, } = await apiBack.get(`products/${product.id}`, { params }); + //await getProducts(params); const hasCurrentProduct = computed(() => { return cart.value.find((p) => p.id === product.id);