Skip to content

Commit

Permalink
Fix: 포트폴리오 기여자에 접속자 이름 뜨는 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
J1min committed Mar 16, 2023
1 parent 4f017bb commit 247bf27
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/app/PortfolioDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,9 @@ export default function Detail({
</div>
{portfolio.contributorList.length > 0 && (
<div className="mb-large flex justify-end">
<MemberGroup writers={[userInfo, ...portfolio.contributorList]} />
<MemberGroup
writers={[portfolio.writer, ...portfolio.contributorList]}
/>
</div>
)}
</div>
Expand Down

0 comments on commit 247bf27

Please sign in to comment.