Not at the moment, but you can try adding the foll...
# 🌎general
f
Not at the moment, but you can try adding the following code right after the webchat code to remove the inject.css stylesheet:
Copy code
<script>
// Remove inject.css stylesheet
Array.from(document.head.getElementsByTagName('link'))
  .find(x => x.href.includes('/inject.css'))
  .remove();
</script>