Update pages/Food_Recipes.py
Browse files- pages/Food_Recipes.py +1 -1
pages/Food_Recipes.py
CHANGED
@@ -25,7 +25,7 @@ def main():
|
|
25 |
response_json = list(response_json)
|
26 |
|
27 |
# Randomly select a recipe
|
28 |
-
st.markdown("## Recipe")
|
29 |
if len(response_json) > 0:
|
30 |
random_recipe = random.choice(response_json)
|
31 |
recipe_calories = random_recipe['Calories']
|
|
|
25 |
response_json = list(response_json)
|
26 |
|
27 |
# Randomly select a recipe
|
28 |
+
st.markdown("## Recommended Recipe")
|
29 |
if len(response_json) > 0:
|
30 |
random_recipe = random.choice(response_json)
|
31 |
recipe_calories = random_recipe['Calories']
|