diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-03-30 12:17:23 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-03-30 12:17:23 +0700 |
| commit | 44d0de6d483a762f7967f4fadf71b210aaab3ba5 (patch) | |
| tree | 696dbe125c04c5d057b1a66c8c7ff9e35ca647a5 /src/lib/cart/components | |
| parent | 902e3ea7e5023e1ed7966369277908a4c04236bd (diff) | |
fix price checkout
Diffstat (limited to 'src/lib/cart/components')
| -rw-r--r-- | src/lib/cart/components/Cart.jsx | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/src/lib/cart/components/Cart.jsx b/src/lib/cart/components/Cart.jsx index 8d995103..8400857d 100644 --- a/src/lib/cart/components/Cart.jsx +++ b/src/lib/cart/components/Cart.jsx @@ -14,7 +14,6 @@ import Spinner from '@/core/components/elements/Spinner/Spinner' import Alert from '@/core/components/elements/Alert/Alert' import MobileView from '@/core/components/views/MobileView' import DesktopView from '@/core/components/views/DesktopView' -import variantPriceApi from '@/lib/variant/api/variantPriceApi' const Cart = () => { const router = useRouter() @@ -29,24 +28,16 @@ const Cart = () => { useEffect(() => { if (cart.data && !products) { - const productsWithQuantity = cart.data.map(async (product) => { + const productsWithQuantity = cart.data.map((product) => { const productInCart = getItemCart({ productId: product.id }) if (!productInCart) return - const productPrice = await variantPriceApi({ id: product.id }) return { ...product, - price: { - price: productPrice.priceExclude, - discountPercentage: productPrice.discount, - priceDiscount: productPrice.priceExcludeAfterDiscount - }, quantity: productInCart.quantity, selected: productInCart.selected } }) - Promise.all(productsWithQuantity).then((resolvedProducts) => { - setProducts(resolvedProducts) - }) + setProducts(productsWithQuantity) } }, [cart, products]) |
