Skip to content

Commit

Permalink
Merge pull request #49632 from nkdengineer/fix/49269
Browse files Browse the repository at this point in the history
  • Loading branch information
blimpich authored Oct 14, 2024
2 parents 91032f7 + 1cf3b6b commit 5f5688f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/actions/IOU.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6496,7 +6496,7 @@ function getReportFromHoldRequestsOnyxData(
chatReport.reportID,
chatReport.policyID ?? iouReport?.policyID ?? '',
recipient.accountID ?? 1,
holdTransactions.reduce((acc, transaction) => acc + transaction.amount, 0) * (ReportUtils.isIOUReport(iouReport) ? 1 : -1),
holdTransactions.reduce((acc, transaction) => acc + TransactionUtils.getAmount(transaction), 0),
getCurrency(firstHoldTransaction),
false,
newParentReportActionID,
Expand Down

0 comments on commit 5f5688f

Please sign in to comment.