in src/providers/DevicesProvider/AudioOutputProvider.tsx [48:59]
async function initAudioOutput() {
if (!audioVideo) {
return;
}
const devices = await audioVideo.listAudioOutputDevices();
if (isMounted) {
setAudioOutputs(devices);
audioVideo.addDeviceChangeObserver(observer);
}
}