Skip to content

Commit

Permalink
Merge pull request #134 from Gamegoo-repo/fix/#133
Browse files Browse the repository at this point in the history
[Fix] 매너 평가 팝업 오류
  • Loading branch information
yyypearl authored Oct 15, 2024
2 parents 3a1597c + 42e3a20 commit 1674f72
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/chat/ChatLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -443,9 +443,9 @@ const ChatLayout = (props: ChatLayoutProps) => {
{ text: '친구 요청 취소', onClick: handleCancelFriendReq },

{ text: '차단하기', onClick: (e: React.MouseEvent) => handleModalChange(e, 'block') },
{ text: '신고하기', onClick: () => chatEnterData?.memberId && handleReportClick },
{ text: '매너 평가', onClick: () => chatEnterData?.memberId && handleMannerClick },
{ text: '비매너 평가', onClick: () => chatEnterData?.memberId && handleBadMannerClick },
{ text: '신고하기', onClick: handleReportClick },
{ text: '매너 평가', onClick: handleMannerClick },
{ text: '비매너 평가', onClick: handleBadMannerClick },
].filter(item => item) as MoreBoxMenuItems[];

/* 더보기 버튼 외부 클릭 시 닫힘 */
Expand Down

0 comments on commit 1674f72

Please sign in to comment.