Skip to content

Commit

Permalink
수정17:44
Browse files Browse the repository at this point in the history
  • Loading branch information
dbstjs95 committed May 13, 2022
1 parent 7899f4b commit c8c430e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/pages/user/PostList.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ function PostList() {
<Search />
<ul className="postList">
{list.slice(offset, offset + LIMIT).map((post) => {
<Post key={post.id} post={post} />;
return <Post key={post.id} post={post} />;
})}
{list.length === 0 && <li>해당하는 정보가 없습니다.</li>}
</ul>
Expand Down

0 comments on commit c8c430e

Please sign in to comment.