File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import '@/styles/globals.css'
2
2
import { Roboto_Flex , Londrina_Solid , Sniglet } from 'next/font/google'
3
3
import CrispChat from '../components/CrispChat'
4
4
import { PeanutProvider } from '@/config'
5
- import { ContextProvider } from '@/config '
5
+ import * as context from '@/context '
6
6
import { FooterVisibilityProvider } from '@/context/footerVisibility'
7
7
8
8
const roboto = Roboto_Flex ( {
@@ -31,13 +31,12 @@ export default function RootLayout({ children }: { children: React.ReactNode })
31
31
< html lang = "en" >
32
32
< body className = { `${ roboto . variable } ${ londrina . variable } ${ sniglet . variable } chakra-ui-light font-sans` } >
33
33
< PeanutProvider >
34
- < ContextProvider >
35
- < CrispChat />
34
+ < context . ContextProvider >
36
35
< FooterVisibilityProvider >
37
36
{ children }
37
+ < CrispChat />
38
38
</ FooterVisibilityProvider >
39
- < CrispChat />
40
- </ ContextProvider >
39
+ </ context . ContextProvider >
41
40
</ PeanutProvider >
42
41
</ body >
43
42
</ html >
You can’t perform that action at this time.
0 commit comments