Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -842,7 +842,6 @@ def checkout():
|
|
842 |
except Exception as e:
|
843 |
print(f"Error during checkout: {str(e)}")
|
844 |
return jsonify({"success": False, "error": str(e)})
|
845 |
-
|
846 |
@app.route("/order", methods=["GET"])
|
847 |
def order_summary():
|
848 |
email = session.get('user_email') # Fetch logged-in user's email
|
|
|
842 |
except Exception as e:
|
843 |
print(f"Error during checkout: {str(e)}")
|
844 |
return jsonify({"success": False, "error": str(e)})
|
|
|
845 |
@app.route("/order", methods=["GET"])
|
846 |
def order_summary():
|
847 |
email = session.get('user_email') # Fetch logged-in user's email
|