Enable structural sharing for preference query (#2113)

This commit is contained in:
dan
2023-12-06 18:20:23 +00:00
committed by GitHub
parent de38595a7a
commit 20a46c8cff
+1
View File
@@ -29,6 +29,7 @@ export const preferencesQueryKey = ['getPreferences']
export function usePreferencesQuery() {
return useQuery({
staleTime: STALE.MINUTES.ONE,
structuralSharing: true,
queryKey: preferencesQueryKey,
queryFn: async () => {
const agent = getAgent()