diff --git a/src/components/App.tsx b/src/components/App.tsx index 35bc76ef164e09926bf3ee20ff3207ca2fdf7233..8fbbb027f4a340bebf151552d8820b460382d153 100644 --- a/src/components/App.tsx +++ b/src/components/App.tsx @@ -28,8 +28,12 @@ export const App = () => { splashComponent={SplashScreen} splashErrorComponent={SplashScreenError} > - <TutorialWelcome open={!tutorial.isWelcomeSeen} /> - {isLastTermAccepted && <Navbar />} + {isLastTermAccepted && ( + <> + <TutorialWelcome open={!tutorial.isWelcomeSeen} /> + <Navbar /> + </> + )} <Main> <Content className="app-content"> <Routes isLastTermAccepted={isLastTermAccepted} />