diff --git a/react-components/src/components/RevealContext/RevealContext.tsx b/react-components/src/components/RevealContext/RevealContext.tsx index 4733eac8f9e..f705ea6cc6d 100644 --- a/react-components/src/components/RevealContext/RevealContext.tsx +++ b/react-components/src/components/RevealContext/RevealContext.tsx @@ -44,7 +44,13 @@ export const RevealContext = (props: RevealContextProps): ReactElement => { const viewer = useRevealFromKeepAlive(props); const queryClient = useMemo(() => { - return new QueryClient(); + return new QueryClient({ + defaultOptions: { + queries: { + refetchOnWindowFocus: false + } + } + }); }, []); if (viewer === null) return <>;