From bbcf10f308de9cbad3fbfc953c9bababf3339a45 Mon Sep 17 00:00:00 2001 From: Bastien DUMONT <bdumont@grandlyon.com> Date: Wed, 2 Oct 2024 13:36:00 +0200 Subject: [PATCH] fix(app): remove console.group --- src/components/Splash/SplashRoot.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/components/Splash/SplashRoot.tsx b/src/components/Splash/SplashRoot.tsx index e6aa2b0f9..c3eba12ff 100644 --- a/src/components/Splash/SplashRoot.tsx +++ b/src/components/Splash/SplashRoot.tsx @@ -192,7 +192,6 @@ const SplashRoot = ({ fadeTimer = 1000, children }: SplashRootProps) => { const partnersInfoService = new PartnersInfoService(client) const ms = new MigrationService(client, setInitStepErrors) try { - console.group('Initialization logs') // Run init steps in parallel setInitStep(InitSteps.PROFILE) const [ @@ -363,8 +362,6 @@ const SplashRoot = ({ fadeTimer = 1000, children }: SplashRootProps) => { } logApp.error(`[Initialization] Error : ${error}`) Sentry.captureException(error) - } finally { - console.groupEnd() } }) } -- GitLab