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]);