diff --git a/providers/index.tsx b/providers/index.tsx index 4a20f2b..57c15bc 100644 --- a/providers/index.tsx +++ b/providers/index.tsx @@ -1,14 +1,11 @@ import { TooltipProvider } from "@/components/ui/tooltip"; import { PropsWithChildren } from "react"; -import MockApiProvider from "./mock-api"; import ReactQueryProvider from "./react-query"; export default function Providers({ children }: PropsWithChildren) { return ( - - - {children} - - + + {children} + ); }