diff --git a/frontend/src/plugin-loader.tsx b/frontend/src/plugin-loader.tsx index 2ce112e2..71c8d0df 100644 --- a/frontend/src/plugin-loader.tsx +++ b/frontend/src/plugin-loader.tsx @@ -255,7 +255,6 @@ class PluginLoader extends Logger { version: version, }); } catch (e) { - //this.error(t('PluginLoader.plugin_load_error.message', { name: name }), e); this.error('Error loading plugin ' + name, e); const TheError: FC<{}> = () => ( @@ -266,11 +265,12 @@ class PluginLoader extends Logger {
                     {e instanceof Error ? e.stack : JSON.stringify(e)}
                   
- -
- ]} /> -
-
+
+ ]} + /> +
); }}