From c7a2ee0234588079c5e4bb10675c25e5fc8bc6c9 Mon Sep 17 00:00:00 2001 From: NotII <46204250+NotII@users.noreply.github.com> Date: Tue, 4 Mar 2025 22:44:54 +0000 Subject: [PATCH] Update ChatList.tsx --- components/dashboard/ChatList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/dashboard/ChatList.tsx b/components/dashboard/ChatList.tsx index 4a27d25..20deca0 100644 --- a/components/dashboard/ChatList.tsx +++ b/components/dashboard/ChatList.tsx @@ -175,7 +175,7 @@ export default function ChatList() { fetchChats(); // Set up polling for updates every 30 seconds - const intervalId = setInterval(fetchChats, 30000); + const intervalId = setInterval(fetchChats, 5000); return () => clearInterval(intervalId); }, [selectedStore]);