fix(rn,breakout-rooms) fix not rendering display names

pull/10582/head jitsi-meet_6718
Saúl Ibarra Corretgé 3 years ago committed by Saúl Ibarra Corretgé
parent 1fa43ca4e7
commit c705dbaa2f
  1. 2
      react/features/breakout-rooms/components/native/CollapsibleRoom.js

@ -65,7 +65,7 @@ export const CollapsibleRoom = ({ room }: Props) => {
horizontal = { false }
keyExtractor = { _keyExtractor }
// eslint-disable-next-line react/jsx-no-bind
renderItem = { item => <BreakoutRoomParticipantItem item = { item } /> }
renderItem = { ({ item: participant }) => <BreakoutRoomParticipantItem item = { participant } /> }
showsHorizontalScrollIndicator = { false }
windowSize = { 2 } />}
</View>

Loading…
Cancel
Save