2
0

chore: 🛂 Add context variables to support typebot

This commit is contained in:
Baptiste Arnaud
2022-02-18 17:15:18 +01:00
parent 9b9e0f6312
commit 7402ad5f6d
3 changed files with 17 additions and 3 deletions

View File

@ -33,11 +33,14 @@ const App = ({ Component, pageProps }: AppProps) => {
{typebotId ? (
<TypebotContext typebotId={typebotId}>
<Component />
<SupportBubble />
</TypebotContext>
) : (
<Component {...pageProps} />
<>
<Component {...pageProps} />
<SupportBubble />
</>
)}
<SupportBubble />
</UserContext>
</SessionProvider>
</KBarProvider>