From 0188c46b8ba9991973a23268da855f7747b6e246 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Feb 2026 12:17:28 +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 0b2a7fa..97da279 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -255,7 +255,7 @@ 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 } ]} /> @@ -269,8 +269,8 @@ export default function ProductPage({ params }: ProductPageProps) { total={`$${cartTotal}`} buttons={[ { - text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout, - }, + text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout + } ]} /> @@ -297,7 +297,7 @@ export default function ProductPage({ params }: ProductPageProps) { { label: "Contact", href: "mailto:info@pawsitivehaven.org" }, { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" } - } + ] } ]} />