From cbf42372d9987eb0597a8ec2eba5f62cbc00c775 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 21:59:16 +0000 Subject: [PATCH] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index a23fba9..57b36cb 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -10,7 +10,7 @@ import ProductCart from "@/components/ecommerce/cart/ProductCart"; import { useProductDetail } from "@/hooks/useProductDetail"; import { useCart } from "@/hooks/useCart"; import { useCheckout } from "@/hooks/useCheckout"; -import FooterCard from '@/components/sections/footer/Footer/FooterCard'; +import FooterCard from '@/components/sections/footer/FooterCard'; import { Twitter, Linkedin, Instagram } from 'lucide-react'; interface ProductPageProps { @@ -94,7 +94,6 @@ function ProductPageContent({ params }: ProductPageProps) { 0 ? variants : undefined} quantity={quantityVariant} - ribbon={meta.ribbon} - inventoryStatus={meta.inventoryStatus} - inventoryQuantity={meta.inventoryQuantity} - sku={meta.sku} buttons={[ { text: "Add To Cart", onClick: handleAddToCart }, { text: "Buy Now", onClick: handleBuyNow },