TanStackT
TanStack3y ago
18 replies
popular-magenta

vite + react query devtools not working

I'm trying to get the react query devtools to show up in my vite app, but I'm seriously struggling. with a simple app like this:

function App() {
return (
<>
<QueryClientProvider client={queryClient}>
<ReactQueryDevtools
initialIsOpen={true}
/>
</QueryClientProvider>
</>
);
}

i keep getting Uncaught Error: No QueryClient set, use QueryClientProvider to set one ... The above error occurred in the <ReactQueryDevtools> component

Any idea what might be going on?
Was this page helpful?