diff --git a/src/app/(main)/cart/page.tsx b/src/app/(main)/cart/page.tsx index 57ae3fb38..aa19b032d 100644 --- a/src/app/(main)/cart/page.tsx +++ b/src/app/(main)/cart/page.tsx @@ -15,7 +15,7 @@ export default async function Page() { const checkout = await Checkout.find(checkoutId); - if (!checkout) { + if (!checkout || checkout.lines.length < 1) { return (

Your Shopping Cart is empty

@@ -80,7 +80,7 @@ export default async function Page() {
-
+

Your Total

Shipping will be calculated in the next step

@@ -91,7 +91,11 @@ export default async function Page() {
- +