diff --git a/src/components/ParticipantPicker.tsx b/src/components/ParticipantPicker.tsx index 658880bf6459..ed10d4922e51 100644 --- a/src/components/ParticipantPicker.tsx +++ b/src/components/ParticipantPicker.tsx @@ -49,16 +49,21 @@ function ParticipantPicker({ onClose, }: ParticipantPickerProps) { const {translate} = useLocalize(); + const isSplitRequest = iouType === CONST.IOU.TYPE.SPLIT; + const selectedParticipant = isSplitRequest ? undefined : participants?.find((participant) => participant.selected && !participant.isSender); + const selectedParticipantsWithoutReport = selectedParticipant && !selectedParticipant.reportID ? [selectedParticipant] : CONST.EMPTY_ARRAY; const pickerContent = ( );