Skip to content

Commit

Permalink
fix bugs on google voice cloning
Browse files Browse the repository at this point in the history
  • Loading branch information
xquanluu committed Nov 4, 2024
1 parent 65e1489 commit 9299e76
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/containers/internal/views/speech-services/form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1097,7 +1097,6 @@ export const SpeechServiceForm = ({ credential }: SpeechServiceFormProps) => {
id={`use_voice_cloning_key_${i}`}
name={`use_voice_cloning_key_${i}`}
type="checkbox"
disabled={credential ? true : false}
onChange={(e) => {
updateCustomVoices(
i,
Expand Down Expand Up @@ -1171,7 +1170,7 @@ export const SpeechServiceForm = ({ credential }: SpeechServiceFormProps) => {
);
});
}}
required
required={!v.model && !v.voice_cloning_key}
/>
</div>
</div>
Expand Down

0 comments on commit 9299e76

Please sign in to comment.