Skip to content

Commit

Permalink
fix: totalPrice를 새로운 입력값으로 넘겨주지 않았던 문제 해결 (#442)
Browse files Browse the repository at this point in the history
  • Loading branch information
jinhokim98 authored Aug 21, 2024
1 parent bc77462 commit c68101b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const PutAndDeleteBillActionModal = ({
} = useMemberReportInput({
data: memberReportListInAction,
addAdjustedMember,
totalPrice: billAction.price,
totalPrice: Number(inputPair.price),
getIsSamePriceStateAndServerState,
getOnlyOneNotAdjustedRemainMemberIndex,
});
Expand Down

0 comments on commit c68101b

Please sign in to comment.