Skip to content

Commit ec286fe

Browse files
authored
[react-ui] Prepend voices/chatterbox to voice file selection in api test page #542 (#543)
1 parent aaca38d commit ec286fe

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

react-ui/src/pages/tools/_api_config.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,10 @@ export default function VoiceConfigGenerator() {
798798
<SelectContent>
799799
<SelectItem value="unset">Unset</SelectItem>
800800
{availableChatterboxVoices.map((voice) => (
801-
<SelectItem key={voice} value={voice}>
801+
<SelectItem
802+
key={voice}
803+
value={`voices/chatterbox/${voice}`}
804+
>
802805
{voice.replace(".wav", "")}
803806
</SelectItem>
804807
))}

0 commit comments

Comments
 (0)