IO-3531 Change global apollo config setting to prevent rerenders.

This commit is contained in:
Patrick Fic
2026-02-02 12:02:11 -08:00
parent 849d967b56
commit e5b7fcb919
5 changed files with 2 additions and 5 deletions

View File

@@ -47,7 +47,6 @@ export function ChatPopupComponent({ chatVisible, selectedConversation, toggleCh
const [getConversations, { loading, data, refetch, called }] = useLazyQuery(CONVERSATION_LIST_QUERY, {
fetchPolicy: "network-only",
nextFetchPolicy: "network-only",
notifyOnNetworkStatusChange: true,
...(pollInterval > 0 ? { pollInterval } : {})
});