diff --git a/frontend/app/recipes/create/CreateRecipePage.tsx b/frontend/app/recipes/create/CreateRecipePage.tsx index 07479262..df1591e4 100644 --- a/frontend/app/recipes/create/CreateRecipePage.tsx +++ b/frontend/app/recipes/create/CreateRecipePage.tsx @@ -18,7 +18,7 @@ export default function CreateRecipePage() { const [error, setError] = useState(null); useEffect(() => { - fetchJson('/api/products') + fetchJson('/api/products') .then(setProducts) .catch(console.error); }, []);