From c475afe2aebbbbf41ac0b8155d912ae42ed75dee Mon Sep 17 00:00:00 2001 From: "Masaharu.Kato" Date: Thu, 19 Jun 2025 14:50:08 +0900 Subject: [PATCH] =?UTF-8?q?=E6=96=99=E7=90=86=E3=83=AA=E3=82=B9=E3=83=88?= =?UTF-8?q?=E3=81=A7=E7=A9=BA=E7=99=BD=E3=81=AE=E3=82=82=E3=81=AE=E3=81=8C?= =?UTF-8?q?=E8=A1=A8=E7=A4=BA=E3=81=95=E3=82=8C=E3=82=8B=E3=81=AE=E3=82=92?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/pages/RecipeList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/RecipeList.tsx b/frontend/src/pages/RecipeList.tsx index 3b1f090..74c5c9f 100644 --- a/frontend/src/pages/RecipeList.tsx +++ b/frontend/src/pages/RecipeList.tsx @@ -49,7 +49,7 @@ const RecipeList: React.FC = () => { maxServings: 0 // 最大調理可能数 } // すべての料理リスト - const [allRecipes, setAllRecipes] = useState([EMPTY_RECIPEWITHID, EMPTY_RECIPEWITHID]); + const [allRecipes, setAllRecipes] = useState(); const [openAddByRecipeDialog, setOpenAddByRecipeDialog] = useState(false);