From ffabca3e2a2802156f6e57af0a858dd2e957b6ae Mon Sep 17 00:00:00 2001 From: Mohammad Azmi Date: Fri, 20 Feb 2026 17:32:59 +0700 Subject: [PATCH] log mountIframe error in IsolatedPluginView --- apps/studio/src/components/plugins/IsolatedPluginView.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/studio/src/components/plugins/IsolatedPluginView.vue b/apps/studio/src/components/plugins/IsolatedPluginView.vue index dbf44ad54..3fc6f48eb 100644 --- a/apps/studio/src/components/plugins/IsolatedPluginView.vue +++ b/apps/studio/src/components/plugins/IsolatedPluginView.vue @@ -68,6 +68,7 @@ export default Vue.extend({ await this.$nextTick(); if (this.shouldMountIframe) { this.mountIframe().catch((e) => { + log.error(e); this.error = e instanceof Error ? e.message : String(e); }); } else {