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, '*');