fix: correct import path for createQueryClient in AppProvider
This commit is contained in:
@@ -5,7 +5,7 @@ import { type PropsWithChildren } from 'react'
|
|||||||
|
|
||||||
import { ThemeProvider } from '@/components/theme/theme-provider'
|
import { ThemeProvider } from '@/components/theme/theme-provider'
|
||||||
import { Toaster } from '@/components/ui/toaster'
|
import { Toaster } from '@/components/ui/toaster'
|
||||||
import { createQueryClient } from '@/lib/query-client'
|
import { createQueryClient } from '@/lib/query-client.ts'
|
||||||
|
|
||||||
export const AppProvider = ({ children }: PropsWithChildren) => {
|
export const AppProvider = ({ children }: PropsWithChildren) => {
|
||||||
const [queryClient] = useState(() => createQueryClient())
|
const [queryClient] = useState(() => createQueryClient())
|
||||||
|
|||||||
Reference in New Issue
Block a user