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