Disable RQ structural sharing (#2022)
This commit is contained in:
@@ -8,6 +8,10 @@ export const queryClient = new QueryClient({
|
|||||||
// so we NEVER want to enable this
|
// so we NEVER want to enable this
|
||||||
// -prf
|
// -prf
|
||||||
refetchOnWindowFocus: false,
|
refetchOnWindowFocus: false,
|
||||||
|
// Structural sharing between responses makes it impossible to rely on
|
||||||
|
// "first seen" timestamps on objects to determine if they're fresh.
|
||||||
|
// Disable this optimization so that we can rely on "first seen" timestamps.
|
||||||
|
structuralSharing: false,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user