Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
isstuev committed Oct 6, 2024
1 parent 08a8096 commit 041684f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ import React from 'react';

import type { NextPageWithLayout } from 'nextjs/types';

import { AppContextProvider } from 'lib/contexts/app';
import { ChakraProvider } from 'lib/contexts/chakra';
import useLoadFeatures from 'lib/growthbook/useLoadFeatures';
import useNotifyOnNavigation from 'lib/hooks/useNotifyOnNavigation';
import AppErrorBoundary from 'ui/shared/AppError/AppErrorBoundary';
import AppErrorGlobalContainer from 'ui/shared/AppError/AppErrorGlobalContainer';
import Web3ModalProvider from 'ui/shared/Web3ModalProvider';

import 'lib/setLocale';
// import 'focus-visible/dist/focus-visible';
Expand Down Expand Up @@ -46,7 +48,11 @@ function MyApp({ Component, pageProps }: AppPropsWithLayout) {
onError={ handleError }
Container={ AppErrorGlobalContainer }
>
<Component { ...pageProps }/>
<Web3ModalProvider>
<AppContextProvider pageProps={ pageProps }>
<Component { ...pageProps }/>
</AppContextProvider>
</Web3ModalProvider>
</AppErrorBoundary>
</ChakraProvider>
);
Expand Down

0 comments on commit 041684f

Please sign in to comment.