diff --git a/qwen3-tts-frontend/src/components/tts/CustomVoiceForm.tsx b/qwen3-tts-frontend/src/components/tts/CustomVoiceForm.tsx index f155c23..e162264 100644 --- a/qwen3-tts-frontend/src/components/tts/CustomVoiceForm.tsx +++ b/qwen3-tts-frontend/src/components/tts/CustomVoiceForm.tsx @@ -210,7 +210,7 @@ const CustomVoiceForm = forwardRef((_props, ref) => { onValueChange={(value: string) => { setSelectedSpeakerId(value) const item = unifiedSpeakers.find(s => s.id === value) - if (item?.source === 'builtin') { + if (item) { setValue('speaker', item.id) } }}