Dont show speaking indicator for active speaker in speaker view
This commit is contained in:
parent
2f691f3dd0
commit
67e290ea8d
6 changed files with 18 additions and 3 deletions
|
@ -105,7 +105,17 @@ const createActiveGroupCallProp = (overrideProps: GroupCallOverrideProps) => ({
|
|||
peekedParticipants:
|
||||
overrideProps.peekedParticipants || overrideProps.remoteParticipants || [],
|
||||
remoteParticipants: overrideProps.remoteParticipants || [],
|
||||
remoteAudioLevels: new Map<number, number>(),
|
||||
remoteAudioLevels: new Map<number, number>(
|
||||
overrideProps.remoteParticipants?.map((_participant, index) => [
|
||||
index,
|
||||
number('remoteAudioLevel', 0, {
|
||||
range: true,
|
||||
min: 0,
|
||||
max: 1,
|
||||
step: 0.01,
|
||||
}),
|
||||
])
|
||||
),
|
||||
});
|
||||
|
||||
const createActiveCallProp = (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue