Skip to content

Commit

Permalink
Fix: 모달 재수정
Browse files Browse the repository at this point in the history
  • Loading branch information
furaha707 committed Feb 23, 2024
1 parent c605160 commit a5d9d62
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/components/card/ListCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,11 @@ const ListCard = forwardRef(
leftBtnText: "취소",
rightBtnText: "판매 승인",
isVisible: isVisible,
opposite: true,
setIsVisible: setIsVisible,
leftAction: () => {
leftAction: () => setIsVisible(false),
rightAction: () => {
saleApproveMutate(tradeId);
},
rightAction: () => setIsVisible(false)
}
};

const navigate = useNavigate();
Expand Down

0 comments on commit a5d9d62

Please sign in to comment.