diff --git a/src/components/Splash/SplashRoot.tsx b/src/components/Splash/SplashRoot.tsx
index e6aa2b0f90bca5441c7bdfc73494d0e182cbb2e4..c3eba12ff61cd7cd2fc3e7e98d3eb2d5523b5cc8 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()
         }
       })
     }