From 0b9f0a347e2bbc47025259d484ee648554891906 Mon Sep 17 00:00:00 2001 From: hamid zarghami Date: Tue, 16 Dec 2025 11:20:57 +0330 Subject: [PATCH] fix security bug deploy --- src/config/QueryProvider.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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