diff --git a/src/extension/index.jsx b/src/extension/index.jsx index 034ff75..0c8cb97 100644 --- a/src/extension/index.jsx +++ b/src/extension/index.jsx @@ -63,15 +63,12 @@ export default class Extension { this.manifest.url, ) - this.app.renderComponent = await buildAppRender( - this.app.render, - { - extension: { - main: this, - manifest: this.manifest, - }, + this.app.renderComponent = buildAppRender(this.app.render, { + extension: { + main: this, + manifest: this.manifest, }, - ) + }) } } }