Compare commits

...

1 Commits

Author SHA1 Message Date
Michel-Marie MAUDET 7c7f03f9ed 🐛(frontend) fix device selection not applying during conference 2026-03-23 16:20:11 +01:00
@@ -69,10 +69,10 @@ const SelectDevicePermissions = <T extends string | number>({
iconComponent={iconComponent}
placeholder={items.length === 0 ? t('loading') : t('select')}
selectedKey={selectedKey}
onSelectionChange={(key) => {
onSelectionChange={async (key) => {
if (key === selectedKey) return
await setActiveMediaDevice(key as string)
onSubmit?.(key as string)
setActiveMediaDevice(key as string)
}}
{...props}
/>