From 343d4ea64183c09d2f0faf49fff226706e4cd17d Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 8 Apr 2020 21:49:27 +0100 Subject: [PATCH] small tweaks Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- src/vector/index.ts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/vector/index.ts b/src/vector/index.ts index 1436171f2f..e018893f7b 100644 --- a/src/vector/index.ts +++ b/src/vector/index.ts @@ -191,17 +191,13 @@ async function start() { // run on the components. await loadApp(fragparts.params); } catch (err) { - console.trace(err); - const { showError } = await import( - /* webpackChunkName: "init" */ - /* webpackPreload: true */ - "./init"); + console.error(err); await showError(err); } } start().catch(err => { console.error(err); if (!acceptBrowser) { - alert("Incompatible browser"); + // TODO redirect to static incompatible browser page } });