Skip to content

Commit

Permalink
Changes call to ToolTipProvider on APP.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
dezoito committed Apr 26, 2024
1 parent bd30c5e commit cdbc80a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import { ReactQueryDevtools } from "@tanstack/react-query-devtools";

import ErrorBoundary from "@/components/ErrorBoundary";
import { Toaster } from "@/components/ui/toaster";
import { AlertDialogProvider } from "./components/ui/alert-dialog-provider";
import { TooltipProvider } from "@/components/ui/tooltip";
import { AlertDialogProvider } from "./components/ui/alert-dialog-provider";

const queryClient = new QueryClient({
defaultOptions: {
Expand All @@ -26,7 +26,7 @@ function App() {
<ThemeProvider defaultTheme="dark" storageKey="vite-ui-theme">
<ErrorBoundary>
<AlertDialogProvider>
<TooltipProvider delayDuration="100" skipDelayDuration="700">
<TooltipProvider delayDuration={100} skipDelayDuration={700}>
<Layout />
</TooltipProvider>
</AlertDialogProvider>
Expand Down

0 comments on commit cdbc80a

Please sign in to comment.