From 72c87a64f9794479adf3d6adaaa066dc24a3b099 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Abel=20Fern=C3=A1ndez?= <44572727+abefernan@users.noreply.github.com> Date: Tue, 15 Oct 2024 18:52:12 +0200 Subject: [PATCH] Try disable mock --- providers/index.tsx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) 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} + ); }