refactor: improve password input layout and enhance chat thread title update logic

This commit is contained in:
Anish Sarkar 2026-04-14 21:13:01 +05:30
parent f01ddf3f0a
commit 1714922830
3 changed files with 42 additions and 29 deletions

View file

@ -27,7 +27,6 @@ export function useTypewriter(text: string, speed = 35, skipFor = "New Chat"): s
}
let i = 0;
setDisplayed("");
intervalRef.current = setInterval(() => {
i++;
setDisplayed(text.slice(0, i));