Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ function TransactionPreviewContent({
const description = truncate(StringUtils.lineBreaksToSpaces(Parser.htmlToText(requestComment ?? '')), {length: CONST.REQUEST_PREVIEW.MAX_LENGTH});
const requestMerchant = truncate(merchant, {length: CONST.REQUEST_PREVIEW.MAX_LENGTH});
const isApproved = isReportApproved({report});
const isIOUSettled = isSettled(report?.reportID);
const isIOUSettled = isSettled(report);
const isSettlementOrApprovalPartial = !!report?.pendingFields?.partial;
const isTransactionScanning = isScanning(transaction);
const displayAmount = isDeleted ? displayDeleteAmountText : displayAmountText;
Expand Down
Loading