From 966a943b5280b101222b53a4f39e75a8a8a84c8e Mon Sep 17 00:00:00 2001 From: Sabiha Khan Date: Wed, 8 Apr 2026 15:34:50 +0530 Subject: [PATCH] fix: remove container id --- ui/public/embed/dograh-widget.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ui/public/embed/dograh-widget.js b/ui/public/embed/dograh-widget.js index 0e52eab..18f2545 100644 --- a/ui/public/embed/dograh-widget.js +++ b/ui/public/embed/dograh-widget.js @@ -948,15 +948,11 @@ * window.addEventListener('message', (event) => { ... }) */ function emitMessage(eventType, detail) { - const containerId = state.config.embedMode === 'inline' - ? state.config.containerId - : 'dograh-widget'; const message = { type: eventType, agentId: state.config.workflowId || null, token: state.config.token || null, workflowRunId: state.workflowRunId || null, - containerId: containerId, ...detail }; window.postMessage(message, '*');