Skip to content

Commit

Permalink
🔧 fix: STT/TTS external checks pt. 2 (#3410)
Browse files Browse the repository at this point in the history
  • Loading branch information
berry-13 authored Jul 21, 2024
1 parent 6209734 commit 3442970
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/components/Nav/SettingsTabs/Speech/Speech.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ function Speech() {

if (
(settings[key].value !== newValue || settings[key].value === newValue || !settings[key]) &&
settings[key].value !== 'sttExternal' &&
settings[key].value !== 'ttsExternal'
settings[key].value === 'sttExternal' &&
settings[key].value === 'ttsExternal'
) {
return;
}
Expand Down

0 comments on commit 3442970

Please sign in to comment.