From bb548bb94c2ec79362365e736331d90ed0cfda54 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 23:22:17 +0000 Subject: [PATCH] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index ba15047..b94f3d2 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -136,11 +136,11 @@ export default function ShopPage() { onQuantityChange={updateQuantity} onRemove={removeItem} total={`$${cartTotal}`} - buttons=[ + buttons={[ { text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout, }, - ] + ]} />