remove future error handling path

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2020-04-05 00:12:37 +01:00
parent d429756094
commit 20442413bf

View File

@ -59,12 +59,4 @@ async function start() {
// import and thus running before the skin can load.
await loadApp();
}
start().catch(err => {
// try show the error in React
console.log("Show React error page");
console.error(err);
}).catch(err => {
// fall back to showing the error in an alert
console.log("Show fallback error page");
console.error(err);
});
start();