Skip to content

Commit

Permalink
#84 fix: 팀 문서 사이드 페이지에 작성자가 로그인 한 계정으로 나오는 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
MyungJiwoo committed Sep 24, 2024
1 parent fafc321 commit f38bfa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/TeamDocument.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ const TeamDocument = () => {
<Flex justifyContent="space-between">
<Flex>
<S.DocumentWriterImg>
<img src={info?.data.picture} alt="프로필 사진" />
<img src={data.picture} alt="프로필 사진" />
</S.DocumentWriterImg>
<S.DocumnetWriter>{info?.data.nickName}</S.DocumnetWriter>
<S.DocumnetWriter>{data.author}</S.DocumnetWriter>
</Flex>
{/* 팀 문서 삭제 */}
<DeleteIcon onClick={submitDelTeamDocument}>
Expand Down

0 comments on commit f38bfa1

Please sign in to comment.