From 3fc21948d0a0d28ccecee7c1d896c95f84414e2f Mon Sep 17 00:00:00 2001 From: "seer-by-sentry[bot]" <157164994+seer-by-sentry[bot]@users.noreply.github.com> Date: Fri, 11 Jul 2025 19:29:46 +0000 Subject: [PATCH] Update cart processing to access items within the cart --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 75b5cd2..44f24fd 100644 --- a/app.py +++ b/app.py @@ -68,7 +68,7 @@ def checkout(): order = json.loads(request.data) print "Processing order for: " + order["email"] - cart = order["cart"] + cart = order["cart"]["items"] process_order(cart)