Skip to content

Commit 9e3ecbb

Browse files
authored
Merge pull request Expensify#78509 from Expensify/mollfpr-fix-failing-workflow-78233
[NoQA] Rename isCardTransaction to is isManagedCardTransaction
2 parents d081eb9 + 95346d6 commit 9e3ecbb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/ReportActionItem/MoneyRequestView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ function MoneyRequestView({
458458
if (isExpenseSplit) {
459459
amountDescription += ` ${CONST.DOT_SEPARATOR} ${translate('iou.split')}`;
460460
}
461-
if (currency !== moneyRequestReport?.currency && !isCardTransaction) {
461+
if (currency !== moneyRequestReport?.currency && !isManagedCardTransaction) {
462462
const convertedAmount = isPaidGroupPolicy(moneyRequestReport) ? -(transaction?.convertedAmount ?? 0) : (transaction?.convertedAmount ?? 0);
463463
if (convertedAmount) {
464464
amountDescription += ` ${CONST.DOT_SEPARATOR} ${translate('common.converted')} ${convertToDisplayString(convertedAmount, moneyRequestReport?.currency)}`;

0 commit comments

Comments
 (0)