no devtools

This commit is contained in:
yohlo
2025-10-11 00:34:58 -05:00
parent 127709bb6c
commit 26c6343a89

View File

@@ -1,9 +1,9 @@
import { AuthProvider } from "@/contexts/auth-context"
import { SpotifyProvider } from "@/contexts/spotify-context"
import MantineProvider from "@/lib/mantine/mantine-provider"
import { ReactQueryDevtoolsPanel } from '@tanstack/react-query-devtools'
import { TanStackRouterDevtoolsPanel } from '@tanstack/react-router-devtools'
import { TanStackDevtools } from '@tanstack/react-devtools'
//import { ReactQueryDevtoolsPanel } from '@tanstack/react-query-devtools'
//import { TanStackRouterDevtoolsPanel } from '@tanstack/react-router-devtools'
//import { TanStackDevtools } from '@tanstack/react-devtools'
import { Toaster } from "sonner"
const Providers = ({ children }: { children: React.ReactNode }) => {
@@ -11,7 +11,7 @@ const Providers = ({ children }: { children: React.ReactNode }) => {
<AuthProvider>
<SpotifyProvider>
<MantineProvider>
<TanStackDevtools
{/*<TanStackDevtools
eventBusConfig={{
debug: false,
connectToServerBus: true,
@@ -26,7 +26,7 @@ const Providers = ({ children }: { children: React.ReactNode }) => {
render: <TanStackRouterDevtoolsPanel />,
}
]}
/>
/>*/}
<Toaster position='top-center' />
{children}
</MantineProvider>