diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx
index 5f156f1..50529cd 100644
--- a/src/app/shop/[id]/page.tsx
+++ b/src/app/shop/[id]/page.tsx
@@ -241,14 +241,10 @@ export default function ProductPage({ params }: ProductPageProps) {
@@ -256,8 +252,6 @@ export default function ProductPage({ params }: ProductPageProps) {
isOpen={cartOpen}
onClose={() => setCartOpen(false)}
items={cartItems}
- onUpdateQuantity={updateQuantity}
- onRemoveItem={removeItem}
total={cartTotal}
onCheckout={handleCheckout}
isLoading={isCheckoutLoading}