File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 1
1
import type { PropsWithChildren } from 'react' ;
2
-
3
- // import { ClientOnly } from '~/components/common/ClientOnly';
2
+ import { Analytics } from '@vercel/analytics/react' ;
4
3
5
4
import Content from '../Content' ;
6
5
import Footer from '../Footer' ;
@@ -12,9 +11,7 @@ const Root = ({ children }: PropsWithChildren) => {
12
11
< Header />
13
12
< Content > { children } </ Content >
14
13
< Footer />
15
- { /* <ClientOnly>
16
- <FABContainer />
17
- </ClientOnly> */ }
14
+ < Analytics /> ,
18
15
</ >
19
16
) ;
20
17
} ;
Original file line number Diff line number Diff line change 3
3
import { PropsWithChildren } from 'react' ;
4
4
import { ThemeProvider } from 'next-themes' ;
5
5
import { LazyMotion } from 'framer-motion' ;
6
- import { Analytics } from '@vercel/analytics/react' ;
7
6
8
7
import ProviderComposer from '@/components/modules/shared/ProviderComposer' ;
9
8
@@ -12,7 +11,6 @@ const loadFeatures = () => import('./framer-lazy-feature').then((res) => res.def
12
11
const webAppContexts : JSX . Element [ ] = [
13
12
< ThemeProvider children key = "themeProvider" /> ,
14
13
< LazyMotion features = { loadFeatures } strict key = "framer" /> ,
15
- < Analytics /> ,
16
14
] ;
17
15
18
16
export default function WebAppProviders ( { children } : PropsWithChildren ) {
You can’t perform that action at this time.
0 commit comments