Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -280,7 +280,7 @@ elif menu == "Current":
|
|
280 |
foods.append(row['Food'])
|
281 |
|
282 |
# Convert every type of "café" to just "café"
|
283 |
-
drinks = [
|
284 |
|
285 |
# Display selections
|
286 |
st.write(f"Drinks: {drinks}")
|
|
|
280 |
foods.append(row['Food'])
|
281 |
|
282 |
# Convert every type of "café" to just "café"
|
283 |
+
drinks = ["Café" if x in item_prices["Cafés"].keys() else x for x in drinks]
|
284 |
|
285 |
# Display selections
|
286 |
st.write(f"Drinks: {drinks}")
|