diff --git a/src/frontend/src/features/rooms/components/Join.tsx b/src/frontend/src/features/rooms/components/Join.tsx index 90600600..a4e933cd 100644 --- a/src/frontend/src/features/rooms/components/Join.tsx +++ b/src/frontend/src/features/rooms/components/Join.tsx @@ -193,7 +193,7 @@ export const Join = ({ const createVideoTrack = async () => { try { const track = await createLocalVideoTrack({ - deviceId: { exact: videoDeviceId }, + deviceId: videoDeviceId, processor: BackgroundProcessorFactory.fromProcessorConfig(processorConfig), }) @@ -223,7 +223,7 @@ export const Join = ({ const createAudioTrack = async () => { try { const track = await createLocalAudioTrack({ - deviceId: { exact: audioDeviceId }, + deviceId: audioDeviceId, noiseSuppression: true, echoCancellation: true, autoGainControl: true,