From e695b0856198201c3ecc5ebf1169cf2f938cbd40 Mon Sep 17 00:00:00 2001 From: Sergei Date: Wed, 28 Jan 2026 20:01:13 -0800 Subject: [PATCH] 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. --- app/(tabs)/_layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/(tabs)/_layout.tsx b/app/(tabs)/_layout.tsx index e3e50cd..2e64065 100644 --- a/app/(tabs)/_layout.tsx +++ b/app/(tabs)/_layout.tsx @@ -207,7 +207,7 @@ export default function TabLayout() { if (sessionActiveRef.current) { safeStartSTT(); } - }, 800); // 800ms to ensure TTS audio fully fades + }, 300); // 300ms to ensure TTS audio fully fades return () => clearTimeout(timer); }