Skip to content

Commit

Permalink
FIX : 누락된 속성 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
jobkaeHenry committed Dec 13, 2023
1 parent 12de3f6 commit 2e939f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/src/components/user/followList/FollowerList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@ const FollowerList = () => {
return (
<>
{data.pages.map((page) =>
page.content.map(({ nickname, id, introduction }) => (
page.content.map(({ nickname, id, introduction, userNo }) => (
<FollowUserCard
key={id}
nickName={nickname}
userId={id}
userPk={userNo}
content={introduction}
/>
))
Expand Down

0 comments on commit 2e939f3

Please sign in to comment.