diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index b19cd95..c44fc01 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -51,7 +51,9 @@ function ProductPageContent({ params }: ProductPageProps) { getCheckoutItems, } = useCart(); - const { buyNow, checkout, isLoading: isCheckoutLoading } = useCheckout(); + const { + buyNow, checkout, isLoading: isCheckoutLoading + } = useCheckout(); const handleAddToCart = useCallback(() => { const item = createCartItem(); @@ -92,7 +94,7 @@ function ProductPageContent({ params }: ProductPageProps) {