2
0

feat(app): Add support bubble

This commit is contained in:
Baptiste Arnaud
2022-02-14 11:33:38 +01:00
parent 8501d39234
commit f897102219
5 changed files with 29 additions and 3 deletions

View File

@ -16,6 +16,7 @@ import { useRouter } from 'next/router'
import { KBarProvider } from 'kbar'
import { actions } from 'libs/kbar'
import { enableMocks } from 'mocks'
import { SupportBubble } from 'components/shared/SupportBubble'
if (process.env.NEXT_PUBLIC_AUTH_MOCKING === 'enabled') enableMocks()
@ -36,6 +37,7 @@ const App = ({ Component, pageProps }: AppProps) => {
) : (
<Component {...pageProps} />
)}
<SupportBubble />
</UserContext>
</SessionProvider>
</KBarProvider>