Skip to content

Commit

Permalink
fix: TTS 속도 관련 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
JSWING5267 committed Aug 4, 2023
1 parent e05583c commit 7f74da6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/InterviewProgressPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ const InterviewProgressPage = (): JSX.Element => {
const synth = window.speechSynthesis;
const utterThis = new SpeechSynthesisUtterance(text);

utterThis.rate = 2.0;
utterThis.rate = 1.0;
synth.speak(utterThis);
utterThis.onend = () => {
startRecording();
Expand Down

0 comments on commit 7f74da6

Please sign in to comment.