I installed the react query devtools and I got an error when trying to start the app, the code and the error snapshots are above, any help, thank you. `
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import { QueryClient, QueryClientProvider } from 'react-query';
import reportWebVitals from './reportWebVitals';
import { ReactQueryDevtools } from 'react-query-devtools';
const queryClient = new QueryClient();
ReactDOM.render(
<React.StrictMode>
<QueryClientProvider client={queryClient}>
{' '}
<App />
<ReactQueryDevtools initialIsOpen />
</QueryClientProvider>
</React.StrictMode>,
document.getElementById('root')
);
reportWebVitals();
TypeError: Cannot read property 'queries' of undefined
export const ReactQueryDevtoolsPanel = React.forwardRef(
> 215 | function ReactQueryDevtoolsPanel(props, ref) {
216 | const { setIsOpen, ...panelProps } = props
217 |
218 | const queryCache = useQueryCache ? useQueryCache() : cache