fix(ScreenShare): properly check for entire audio ondisabled
This commit is contained in:
parent
5531122889
commit
19ed980b11
1 changed files with 1 additions and 1 deletions
|
@ -515,7 +515,7 @@ function AudioSourcePickerLinux({
|
||||||
<Switch
|
<Switch
|
||||||
hideBorder
|
hideBorder
|
||||||
onChange={setOnlyDefaultSpeakers}
|
onChange={setOnlyDefaultSpeakers}
|
||||||
disabled={audioSources?.[0] !== "Entire System"}
|
disabled={audioSources !== "Entire System"}
|
||||||
value={onlyDefaultSpeakers ?? true}
|
value={onlyDefaultSpeakers ?? true}
|
||||||
note={
|
note={
|
||||||
<>
|
<>
|
||||||
|
|
Reference in a new issue