Skip to content

Commit

Permalink
Merge pull request #136 from yura0302/develop
Browse files Browse the repository at this point in the history
fix : 대괄호 추가
  • Loading branch information
yura0302 authored May 23, 2024
2 parents fe7de84 + 70071a5 commit 3309483
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/pages/ItemDetail/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,14 @@ const ItemDetail: React.FC = () => {
{userId === String(data?.userId) ? (
<S.ChatButton onClick={goToEdit}>수정하기</S.ChatButton>
) : (
<S.ChatButton onClick={()=>{handleChat()}>채팅하기</S.ChatButton>
<S.ChatButton
onClick={() => {
handleChat();
}}
>
채팅하기
</S.ChatButton>
)}
</S.Buttons>
</S.Maincontainer>

Expand Down

0 comments on commit 3309483

Please sign in to comment.