diff --git a/src/app.jsx b/src/app.jsx index 7fc8f604..2e8f99f0 100644 --- a/src/app.jsx +++ b/src/app.jsx @@ -410,8 +410,10 @@ function App() { setUIState('loading'); (async () => { try { - await initPreferences(client); - await initInstance(client, instance); + await Promise.allSettled([ + initPreferences(client), + initInstance(client, instance), + ]); } catch (e) { } finally { setIsLoggedIn(true);