diff --git a/src/components/App/index.tsx b/src/components/App/index.tsx
index 0b3a0ea39..117082abc 100644
--- a/src/components/App/index.tsx
+++ b/src/components/App/index.tsx
@@ -330,7 +330,7 @@ export const App = () => {
}, [runningProjectId, setRunningProjectMessages])
useEffect(() => {
- if (isAdmin && !appMetaData?.title && !visible) {
+ if (!isAdmin && appMetaData?.title && !visible) {
open()
}
}, [isAdmin, appMetaData?.title, open, visible])
@@ -350,27 +350,28 @@ export const App = () => {
Loading...}>
- {!splashDataLoading &&
- (visible ? (
- Loading Onboarding...}>
-
-
- ) : (
-
-
-
- {!universeQuestionIsOpen && }
-
-
-
- v{version}
-
-
-
-
-
-
- ))}
+ {visible && (
+ Loading Onboarding...}>
+
+
+ )}
+
+ {!visible && !splashDataLoading && (
+
+
+
+ {!universeQuestionIsOpen && }
+
+
+
+ v{version}
+
+
+
+
+
+
+ )}
>
)