From b8e7ac7a27720d8840476602089bcdc1b9eab09b Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Feb 2026 00:36:08 +0000 Subject: [PATCH] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 36a5ae4..e93fb2c 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -25,7 +25,6 @@ export default function ProductPage({ params }: ProductPageProps) { isLoading, images, variants, - quantityVariant, selectedQuantity, createCartItem, } = useProductDetail(id); @@ -41,7 +40,7 @@ export default function ProductPage({ params }: ProductPageProps) { getCheckoutItems, } = useCart(); - const { buyNow, checkout, isLoading: isCheckoutLoading } = useCheckout(); + const { buyNow, checkout } = useCheckout(); const handleAddToCart = useCallback(() => { const item = createCartItem(); @@ -149,7 +148,6 @@ export default function ProductPage({ params }: ProductPageProps) {