diff --git a/src/config/QueryProvider.tsx b/src/config/QueryProvider.tsx index ab02c1b..72db2f9 100644 --- a/src/config/QueryProvider.tsx +++ b/src/config/QueryProvider.tsx @@ -1,7 +1,7 @@ 'use client' import { IApiErrorRepsonse } from '@/types/error.types' -import { QueryClient, QueryClientProvider, HydrationBoundary, QueryCache } from '@tanstack/react-query' +import { QueryClient, QueryClientProvider, QueryCache } from '@tanstack/react-query' import { ReactNode, useState } from 'react' import { removeToken } from './func' import { useSharedStore } from '@/shared/store/sharedStore' @@ -27,9 +27,7 @@ export default function QueryProvider({ children }: { children: ReactNode }) { return ( - - {children} - + {children} ) } \ No newline at end of file