From 03aebc6b2249c5d4af7bbaedc892f71df8a0ec05 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Feb 2026 18:16:06 +0000 Subject: [PATCH] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 2a413d7..a73ec89 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -195,8 +195,8 @@ export default function ProductPage({ params }: ProductPageProps) { sku={meta.sku} buttons={[ { text: "Add To Cart", onClick: handleAddToCart }, - { text: "Buy Now", onClick: handleBuyNow }, - ] + { text: "Buy Now", onClick: handleBuyNow } + ]} />
@@ -209,8 +209,8 @@ export default function ProductPage({ params }: ProductPageProps) { total={`$${cartTotal}`} buttons={[ { - text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout, - }, + text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout + } ]} />
-- 2.49.1