From f0dcd8afe417de64381e781c97ea23cf40466913 Mon Sep 17 00:00:00 2001 From: nklhrstv Date: Wed, 25 Mar 2020 11:22:27 +0200 Subject: [PATCH] initialize core only if its active --- src/App/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/App.js b/src/App/App.js index fdbf821f0..6c05459d2 100644 --- a/src/App/App.js +++ b/src/App/App.js @@ -31,7 +31,7 @@ const App = () => { } }); } - setCoreInitialized(services.core.active || services.core.error instanceof Error); + setCoreInitialized(services.core.active); }; services.shell.on('stateChanged', onShellStateChanged); services.core.on('stateChanged', onCoreStateChanged);