Merged in feature/IO-2208-chat-affix (pull request #801)

IO-2208 replaced cache first to network only

Approved-by: Patrick Fic
This commit is contained in:
John Allen Delos Reyes
2023-05-24 15:24:57 +00:00
committed by Patrick Fic

View File

@@ -50,8 +50,8 @@ export function ChatPopupComponent({
getConversations,
{ loading, data, called, refetch, fetchMore, subscribeToMore },
] = useLazyQuery(CONVERSATION_LIST_QUERY, {
fetchPolicy: "cache-and-network",
nextFetchPolicy: "cache-first",
fetchPolicy: "network-only",
nextFetchPolicy: "network-only",
skip: !chatVisible,
});