Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardoj committed Dec 5, 2024
1 parent 5f492c1 commit 56eacd8
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 @@ -6705,7 +6705,7 @@ function getPayMoneyRequestParams(

let total = (iouReport?.total ?? 0) - (iouReport?.nonReimbursableTotal ?? 0);
if (ReportUtils.hasHeldExpenses(iouReport?.reportID ?? '') && !full && !!iouReport?.unheldTotal) {
total = iouReport?.unheldTotal - (iouReport?.unheldNonReimbursableTotal ?? 0);
total = iouReport.unheldTotal - (iouReport?.unheldNonReimbursableTotal ?? 0);
}

const optimisticIOUReportAction = ReportUtils.buildOptimisticIOUReportAction(
Expand Down

0 comments on commit 56eacd8

Please sign in to comment.