fix six app bugs

This commit is contained in:
2026-04-16 07:55:13 -06:00
parent f61a765624
commit 7b4874b8b1
7 changed files with 21 additions and 13 deletions

View File

@@ -352,11 +352,6 @@ function ChatPage() {
if (pollRef.current) clearInterval(pollRef.current);
setMessages([]);
setError(null);
setLoadingConv(true);
await fetchConversation(convId);
await fetchMessages(convId);
setLoadingConv(false);
startPolling(convId);
router.replace(`/chat?id=${convId}`, { scroll: false });
}