diff --git a/src/auth/hooks/useAuthProvider.ts b/src/auth/hooks/useAuthProvider.ts index a550d2c56..ec76aab41 100644 --- a/src/auth/hooks/useAuthProvider.ts +++ b/src/auth/hooks/useAuthProvider.ts @@ -74,7 +74,9 @@ export function useAuthProvider({ const userDetails = useQuery(userDetailsQuery, { client: apolloClient, skip: !authenticated, - fetchPolicy: "network-only" + // Don't change this to 'network-only' - update of intl provider's + // state will cause an error + fetchPolicy: "cache-and-network" }); const handleLogout = async () => {