diff --git a/frontend/app/recipes/write/WriteRecipePage.tsx b/frontend/app/recipes/write/WriteRecipePage.tsx index 9c0bd4d3..93f761ed 100644 --- a/frontend/app/recipes/write/WriteRecipePage.tsx +++ b/frontend/app/recipes/write/WriteRecipePage.tsx @@ -43,6 +43,7 @@ export default function WriteRecipePage() { const [editedName, setEditedName] = useState(''); const [editedDescription, setEditedDescription] = useState(''); const [editedInstructions, setEditedInstructions] = useState(''); + const [imageUrl, setImageUrl] = useState(null); const [ingredients, setIngredients] = useState([]); const [allProducts, setAllProducts] = useState([]); const [isParsing, setIsParsing] = useState(false);