Reduce STT restart delay from 800ms to 300ms

Makes voice conversation feel much more responsive.
The 800ms delay was overkill - 300ms is sufficient for TTS audio to release.
This commit is contained in:
Sergei 2026-01-28 20:01:13 -08:00
parent c026921278
commit e695b08561

View File

@ -207,7 +207,7 @@ export default function TabLayout() {
if (sessionActiveRef.current) { if (sessionActiveRef.current) {
safeStartSTT(); safeStartSTT();
} }
}, 800); // 800ms to ensure TTS audio fully fades }, 300); // 300ms to ensure TTS audio fully fades
return () => clearTimeout(timer); return () => clearTimeout(timer);
} }