feat(voice): enable web camera background effects (#2408)

This commit is contained in:
Hampus
2026-09-02 17:40:13 +02:00
committed by GitHub
parent af4a52173c
commit 2b12f5db6c
@@ -1,5 +1,7 @@
// SPDX-License-Identifier: AGPL-3.0-or-later
import {webCameraSegmentationRuntimeAvailable} from '@app/features/voice/utils/camera-effects/WebCameraBackgroundSupport';
export function areVoiceBackgroundsAvailable(): boolean {
return false;
return webCameraSegmentationRuntimeAvailable();
}