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);