diff --git a/src/containers/internal/views/applications/speech-selection.tsx b/src/containers/internal/views/applications/speech-selection.tsx index ca0bfd5..30b1a1c 100644 --- a/src/containers/internal/views/applications/speech-selection.tsx +++ b/src/containers/internal/views/applications/speech-selection.tsx @@ -233,11 +233,10 @@ export const SpeechProviderSelection = ({ } if (vendor === VENDOR_ELEVENLABS) { - const newLang = synthesis[vendor].find( - (lang) => lang.code === ELEVENLABS_LANG_EN - ); + // Samve Voices applied to all languages + // Voices are only available for the 1st language. setSynthLang(ELEVENLABS_LANG_EN); - setSynthVoice(newLang!.voices[0].value); + setSynthVoice(synthesis[vendor][0].voices[0].value); return; }