Skip to content
This repository has been archived by the owner on Jan 30, 2025. It is now read-only.

Commit

Permalink
Try disable mock
Browse files Browse the repository at this point in the history
  • Loading branch information
abefernan committed Oct 15, 2024
1 parent 69bc009 commit 72c87a6
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions providers/index.tsx
Original file line number Diff line number Diff line change
@@ -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 (
<MockApiProvider>
<ReactQueryProvider>
<TooltipProvider>{children}</TooltipProvider>
</ReactQueryProvider>
</MockApiProvider>
<ReactQueryProvider>
<TooltipProvider>{children}</TooltipProvider>
</ReactQueryProvider>
);
}

0 comments on commit 72c87a6

Please sign in to comment.