diff --git a/apps/builder/pages/_app.tsx b/apps/builder/pages/_app.tsx index b84fd12ad..575d84647 100644 --- a/apps/builder/pages/_app.tsx +++ b/apps/builder/pages/_app.tsx @@ -18,7 +18,6 @@ import { actions } from 'libs/kbar' import { enableMocks } from 'mocks' import { SupportBubble } from 'components/shared/SupportBubble' import { WorkspaceContext } from 'contexts/WorkspaceContext' -import { MaintenancePage } from 'components/shared/MaintenancePage' if (process.env.NEXT_PUBLIC_E2E_TEST === 'enabled') enableMocks() @@ -33,30 +32,29 @@ const App = ({ Component, pageProps: { session, ...pageProps } }: AppProps) => { }, [pathname]) const typebotId = query.typebotId?.toString() - return - // return ( - // - // - // - // - // {typebotId ? ( - // - // - // - // - // - // - // ) : ( - // - // - // - // - // )} - // - // - // - // - // ) + return ( + + + + + {typebotId ? ( + + + + + + + ) : ( + + + + + )} + + + + + ) } export default App