Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
SophieLab committed Sep 16, 2024
1 parent e70e038 commit 01fa325
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,19 @@ const queryClient = new QueryClient();

ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
<ConfirmContextProvider>
<Provider store={store}>
<ErrorBoundary FallbackComponent={<>Error</>}>
<QueryClientProvider client={queryClient}>
<BrowserRouter>
<Provider store={store}>
<ErrorBoundary FallbackComponent={<>Error</>}>
<QueryClientProvider client={queryClient}>
<BrowserRouter>
<ConfirmContextProvider>
<App />
</BrowserRouter>
<ReactQueryDevtools initialIsOpen={true} />
</QueryClientProvider>
<ToastContainer />
</ErrorBoundary>
</Provider>
</ConfirmContextProvider>
</ConfirmContextProvider>
</BrowserRouter>
<ReactQueryDevtools initialIsOpen={true} />
</QueryClientProvider>
<ToastContainer />
</ErrorBoundary>
</Provider>

</React.StrictMode>
);

0 comments on commit 01fa325

Please sign in to comment.