댓글 삭제
const onDeleteComments = (id) => { preventDefault(); dispatch(deleteComment(id)); axios.delete(`http://localhost:3001/comments/${id}`); setComments(comments.filter((comment) => comment.id !== id)); };
해결 못한것
Try