Skip to content

Commit

Permalink
Merge pull request #26292 from Expensify/youssef_fix_isSettled_ach
Browse files Browse the repository at this point in the history
[CP Staging] Change isSettled to check for status only
  • Loading branch information
mountiny authored Aug 30, 2023
2 parents 6d77b3f + e232ea5 commit 19f830e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/ReportUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ function isSettled(reportID) {
return false;
}

return report.stateNum === CONST.REPORT.STATE_NUM.SUBMITTED && report.statusNum === CONST.REPORT.STATUS.REIMBURSED;
return report.statusNum === CONST.REPORT.STATUS.REIMBURSED;
}

/**
Expand Down

0 comments on commit 19f830e

Please sign in to comment.