Skip to content

Commit

Permalink
fix: added file
Browse files Browse the repository at this point in the history
  • Loading branch information
Franqsanz committed Dec 22, 2023
1 parent 51710c0 commit 668a110
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { HelmetProvider } from 'react-helmet-async';

import theme from '../theme';
import routes from './routes';
import { AuthProvider } from './store/AuthContext';

const queryClient = new QueryClient();

Expand All @@ -33,7 +34,9 @@ const html = (
<QueryClientProvider client={queryClient}>
<ChakraProvider theme={theme}>
<ColorModeScript initialColorMode={theme.config.initialColorMode} />
<RouterProvider router={routes} />
<AuthProvider>
<RouterProvider router={routes} />
</AuthProvider>
</ChakraProvider>
<ReactQueryDevtools />
</QueryClientProvider>
Expand Down

1 comment on commit 668a110

@vercel
Copy link

@vercel vercel bot commented on 668a110 Dec 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

xbu – ./

xbu-franqsanz.vercel.app
xbu.vercel.app
xbu-git-main-franqsanz.vercel.app

Please sign in to comment.