Commit f01428f5 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix: sleep duration

parent 401799c6
......@@ -125,7 +125,7 @@
const audio = sentencesAudio[idx];
audio.play();
audio.onended = async (e) => {
await new Promise((r) => setTimeout(r, 500));
await new Promise((r) => setTimeout(r, 300));
if (Object.keys(sentencesAudio).length - 1 === idx) {
speaking = null;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment