fix: correct import path for createQueryClient in AppProvider
Build and deploy / build (push) Failing after 24s Details
Build and deploy / deploy (push) Has been skipped Details

This commit is contained in:
Artem Kashaev 2025-12-01 15:23:14 +05:00
parent c89d9c8a7d
commit 16746e075c
1 changed files with 1 additions and 1 deletions

View File

@ -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())