Skip to content

Commit 2044241

Browse files
committed
remove future error handling path
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
1 parent d429756 commit 2044241

1 file changed

Lines changed: 1 addition & 9 deletions

File tree

src/vector/index.js

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,4 @@ async function start() {
5959
// import and thus running before the skin can load.
6060
await loadApp();
6161
}
62-
start().catch(err => {
63-
// try show the error in React
64-
console.log("Show React error page");
65-
console.error(err);
66-
}).catch(err => {
67-
// fall back to showing the error in an alert
68-
console.log("Show fallback error page");
69-
console.error(err);
70-
});
62+
start();

0 commit comments

Comments
 (0)