2
0

🚸 (chatwoot) Make sure to close the chat bubble before opening Chatwoot

This commit is contained in:
Baptiste Arnaud
2022-11-10 14:21:42 +01:00
parent 54a1dc0431
commit d01549fee6
2 changed files with 6 additions and 5 deletions

View File

@ -16,7 +16,7 @@ export const IframeEmbedCode = ({
const src = `${
env('VIEWER_INTERNAL_URL') ?? getViewerUrl({ isBuilder: true })
}/${typebot?.publicId}`
const code = `<iframe src="${src}" width="${widthLabel}" height="${heightLabel}" />`
const code = `<iframe src="${src}" width="${widthLabel}" height="${heightLabel}" style="border: none"></iframe>`
return <CodeEditor value={code} lang="html" isReadOnly />
}