diff --git a/client/src/app/hooks/useFetch.js b/client/src/app/hooks/useFetch.js index 3ddbdeaba..eceaf10d8 100644 --- a/client/src/app/hooks/useFetch.js +++ b/client/src/app/hooks/useFetch.js @@ -5,6 +5,7 @@ export const useFetch = (namespace, fn) => { const { data, status, isError, refetch } = useQuery(namespace, fn, { refetchInterval: refetchIntervalMs, cacheTime: Infinity, + notifyOnChangeProps: 'tracked', }); return { data, status, isError, refetch };