Skip to content

Commit

Permalink
[refactor] #149 이미지 태그 폼 수정
Browse files Browse the repository at this point in the history
- 일관되게 변경
  • Loading branch information
ktmihs committed Dec 5, 2022
1 parent 3cf4c8a commit 80ad013
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/component/Sidebar/Friends/friendItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ const FriendItem = ({ friend }: { friend: friendType }) => {
<button onClick={sendChatting}>
<img src={message} alt="채팅하기 버튼"></img>
</button>
<img src={unfollow} alt="친구 끊기 버튼" onClick={unfollowing}></img>
<button onClick={unfollowing}>
<img src={unfollow} alt="친구 끊기 버튼"></img>
</button>
{isCalling && <div></div>}
</div>
</section>
Expand Down

0 comments on commit 80ad013

Please sign in to comment.