Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -83,7 +83,6 @@ def menu():
|
|
83 |
if selected_category != "All":
|
84 |
food_items = [item for item in food_items if item.get("Category__c") == selected_category]
|
85 |
except Exception as e:
|
86 |
-
print(f"Error fetching data: {e}")
|
87 |
food_items = []
|
88 |
categories = []
|
89 |
return render_template("menu.html", food_items=food_items, categories=categories, selected_category=selected_category)
|
|
|
83 |
if selected_category != "All":
|
84 |
food_items = [item for item in food_items if item.get("Category__c") == selected_category]
|
85 |
except Exception as e:
|
|
|
86 |
food_items = []
|
87 |
categories = []
|
88 |
return render_template("menu.html", food_items=food_items, categories=categories, selected_category=selected_category)
|