에러떠요..
해결 하셨나요? create 폼에서는 id가 넘어오지 않아서 useEffect에서 요청하는 id 값에 undefined가 넘어가고 있네요. edit 폼에서는 id 값이 있어서 기존 값을 잘 불러오구요. 저는 따로 useEffect 수행하는 부분에서 editing 상태값에 따라 분기했는데 강의 코드에서는 분기 없이 잘 되는게 무슨 차이인지 모르겠습니다.. useEffect(() => { if(editing) { axios.get(`http://localhost:3001/posts/${id}`).then((res) => { setTitle(res.data.title) setBody(res.data.body) }) } }, [id, editing]) 오히려 분기가 없으면 문제가 되어야 하는게 맞을 것 같아서요