Skip to content

Commit

Permalink
show missing details only if not settled
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardoj committed Jan 16, 2024
1 parent 8e2fb67 commit c790f4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ReportActionItem/MoneyRequestPreview.js
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ function MoneyRequestPreview(props) {
return translate('iou.receiptScanning');
}

if (TransactionUtils.hasMissingSmartscanFields(props.transaction)) {
if (!isSettled && TransactionUtils.hasMissingSmartscanFields(props.transaction)) {
return Localize.translateLocal('iou.receiptMissingDetails');
}

Expand Down

0 comments on commit c790f4e

Please sign in to comment.