in src/providers/VoiceFocusProvider/index.tsx [127:137]
async function getVoiceFocusDeviceTransformer(): Promise<
VoiceFocusDeviceTransformer | undefined
> {
if (voiceFocusTransformer) {
return voiceFocusTransformer;
}
// This should only be hit if `isVoiceFocusSupported` was true at some point,
// but the transformer is now missing, which means we are updating the transformer.
return currentPromise;
}