fix: sleep duration

This commit is contained in:
Timothy J. Baek 2024-02-10 19:29:13 -08:00
parent 401799c6fa
commit f01428f502

View File

@ -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;