From cd24482038788da75178f9a2e7f21b9e3bb820b6 Mon Sep 17 00:00:00 2001 From: Baptiste Arnaud Date: Sat, 14 May 2022 07:35:03 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Remove=20maintenance=20page?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/builder/pages/_app.tsx | 48 ++++++++++++++++++------------------- 1 file changed, 23 insertions(+), 25 deletions(-) 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