From cc7386ec3c2e9f97afe8c63d3d645b31849d44e3 Mon Sep 17 00:00:00 2001 From: Abdul Mannan Date: Sat, 3 Aug 2024 20:39:42 +0500 Subject: [PATCH] checkpoint#2 --- src/app/components/RecipeDialog.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/components/RecipeDialog.tsx b/src/app/components/RecipeDialog.tsx index ddc12aa..44ea848 100644 --- a/src/app/components/RecipeDialog.tsx +++ b/src/app/components/RecipeDialog.tsx @@ -33,7 +33,6 @@ const RecipeDialog = ({ pantryData, setRecipeCard }: Props) => { const response = await axios.get( `https://api.spoonacular.com/recipes/findByIngredients?ingredients=${ingredients}&number=5&apiKey=${process.env.NEXT_PUBLIC_SPOONACULAR_API_KEY}` ); - console.log("🚀 ~ fetchRecipes ~ response.data:", response.data); setRecipes(response.data); };