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, }, - ] + ]} />