From 16746e075c2b1f6c5488a9e1c14dc39f4b0828c6 Mon Sep 17 00:00:00 2001 From: Artem Kashaev Date: Mon, 1 Dec 2025 15:23:14 +0500 Subject: [PATCH] fix: correct import path for createQueryClient in AppProvider --- frontend/src/app/providers/app-provider.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/providers/app-provider.tsx b/frontend/src/app/providers/app-provider.tsx index 7d7af83..5c3bf35 100644 --- a/frontend/src/app/providers/app-provider.tsx +++ b/frontend/src/app/providers/app-provider.tsx @@ -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())