Skip to content

Commit 0649d6e

Browse files
authored
Merge pull request Expensify#80634 from nkdengineer/fix/80023
fix: Imported contacts do not appear in the contact list
2 parents d674fb1 + ded5e1b commit 0649d6e

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/pages/iou/request/step/IOURequestStepParticipants.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,8 +441,13 @@ function IOURequestStepParticipants({
441441
}
442442
return initialTransaction?.comment?.customUnit?.quantity === 0;
443443
}
444+
445+
if (iouRequestType === CONST.IOU.REQUEST_TYPE.SCAN) {
446+
return false;
447+
}
448+
444449
return initialTransaction?.amount !== undefined && initialTransaction?.amount !== null && initialTransaction?.amount <= 0;
445-
}, [initialTransaction]);
450+
}, [initialTransaction, iouRequestType]);
446451

447452
return (
448453
<StepScreenWrapper

0 commit comments

Comments
 (0)