diff --git a/react/features/participants-pane/components/native/MeetingParticipantList.js b/react/features/participants-pane/components/native/MeetingParticipantList.js index a7684e6b2..ccff908cc 100644 --- a/react/features/participants-pane/components/native/MeetingParticipantList.js +++ b/react/features/participants-pane/components/native/MeetingParticipantList.js @@ -136,7 +136,7 @@ class MeetingParticipantList extends PureComponent { const { _localParticipant, _remoteParticipants } = this.props; const { searchString } = this.state; const participant = item === _localParticipant?.id ? _localParticipant : _remoteParticipants.get(item); - const displayName = participant?.name; + const displayName = participant?.name || ''; if (displayName) { const names = normalizeAccents(displayName)