[DevTools]: Queries hidden when using PersistQueryClientProvider after persisting to disk #10285
|
I've noticed that when using a persisted query client, the dev tools will show queries show first time they're fetched (no local cache) <PersistQueryClientProvider
client={queryClient}
persistOptions={{ persister: createQueryPersister() }}
>Are there some options for the persist that would influence this? |
Answered by
kieran-osgood
Mar 18, 2026
Replies: 1 comment
|
Resolved this by migrating from whole-cache persistence (PersistQueryClientProvider) to per-query persistence (experimental_createQueryPersister from |
0 replies
Answer selected by
kieran-osgood
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Resolved this by migrating from whole-cache persistence (PersistQueryClientProvider) to per-query persistence (experimental_createQueryPersister from
@tanstack/query-persist-client-core).