Skip to content

Commit 5da0391

Browse files
committed
fix: 구매/참여자 카드 api 호출 hook 함수 오타 수정
1 parent b67d08f commit 5da0391

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/features/dashboard/ui/ParticipantCard.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ interface ParticipantCardProps {
1313
}
1414

1515
const ParticipantCard = ({ participant, onCheckClick }: ParticipantCardProps) => {
16-
const { mutate: approveParticipant } = useApproveParticipants(participant.orderId);
17-
16+
const { mutate: approveParticipant } = useApproveParticipants(participant.id);
1817
// useQuery를 사용한 에러 핸들링
1918
const { error } = usePersonalTicketOptionAnswers(participant.ticketId);
2019

0 commit comments

Comments
 (0)