{data?.map((post) => { if (post?.uid === user?.uid) { return ( { showPostHandler(post); }} > {post?.userConcern} { deletePostHandler(post.id); }} > 삭제 ); } })} 해당 코드에서 지속적으로 Array.prototype.map() expects a value to be returned at the end of arrow function라는 경고문이 발생하였다. '경고'이기에 잘 돌아가긴 하지만 Warning 없이 깔끔한 방법이 좋기 때문에 해결방법을 찾아냈다. 결론적으로 해당 문제는 아주 간단하게 해결 가능하다 {data?.map((post) => { if (post?.uid === u..