Fix participant mute

This commit is contained in:
Robert Long 2021-08-18 18:05:43 -07:00
parent 0c22de6289
commit c6e43627a2

View file

@ -343,7 +343,7 @@ function ParticipantTile({ style, participant, remove, ...rest }) {
return (
<animated.div className={styles.participantTile} style={style} {...rest}>
<div className={styles.participantName}>{participant.userId}</div>
<video ref={videoRef} playsInline />
<video ref={videoRef} playsInline muted={participant.muted} />
</animated.div>
);
}