diff --git a/frontend/app/components/workspace/CrmWorkspaceApp.vue b/frontend/app/components/workspace/CrmWorkspaceApp.vue index 8635202..7d20a56 100644 --- a/frontend/app/components/workspace/CrmWorkspaceApp.vue +++ b/frontend/app/components/workspace/CrmWorkspaceApp.vue @@ -308,6 +308,8 @@ async function refetchAllCrmQueries() { refetchFeed(), refetchPins(), refetchDocuments(), + refetchChatMessages(), + refetchChatConversations(), ]); await refreshSelectedClientTimeline(); } diff --git a/frontend/app/composables/usePilotChat.ts b/frontend/app/composables/usePilotChat.ts index 28a495b..69a1576 100644 --- a/frontend/app/composables/usePilotChat.ts +++ b/frontend/app/composables/usePilotChat.ts @@ -619,7 +619,7 @@ export function usePilotChat(opts: { pilotBackgroundPoll = setInterval(() => { if (!opts.authMe.value) return; loadPilotMessages().catch(() => {}); - }, 2000); + }, 30_000); } function stopPilotBackgroundPolling() {