Skip to content

Commit

Permalink
Refactor: 이미지, 좋아요 수 api연결2 #65
Browse files Browse the repository at this point in the history
  • Loading branch information
jiyeeeah committed Oct 16, 2023
1 parent 7b2f086 commit cfb481c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/pages/mypage/MyPageMain/MyBoardsList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ export default function MyBoardsList() {
<MyBoardCard
userName={board.writer}
content={board.content}
// TODO: 이미지 연결
imgs={[]}
commentsCount={board.replyCount}
imgs={board.fileNames}
setShowModal={setShowModal}
commentsCount={board.replyCount}
likedCount={board.likedCount}
/>
</div>
)),
Expand Down

0 comments on commit cfb481c

Please sign in to comment.