fix six app bugs

This commit is contained in:
2026-04-16 07:55:13 -06:00
parent 77793071ce
commit a1ec3e728b
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 });
}