Skip to content

Commit

Permalink
fix(tts): minor; get rid of react warning
Browse files Browse the repository at this point in the history
  • Loading branch information
marisademeglio committed Apr 16, 2024
1 parent 41becd3 commit 4ba44cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/renderer/components/TtsMoreOptionsConfig/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -214,14 +214,14 @@ export function TtsMoreOptionsConfigPane({
(prop) =>
prop.key ==
'org.daisy.pipeline.tts.google.samplerate'
)?.value ?? ''
)?.value ?? '44100'
}
>
<option value="8000">8000 Hz</option>
<option value="11025">11025 Hz</option>
<option value="16000">16000 Hz</option>
<option value="22050">22050 Hz</option>
<option value="44100" selected>
<option value="44100">
44100 Hz
</option>
<option value="48000">48000 Hz</option>
Expand Down

0 comments on commit 4ba44cc

Please sign in to comment.