Xavier De Koninck
Xavier De Koninck
Hello, do you have any news or estimated date for the cocoapods release please?
Same for me
I identified the issue and have submitted [a pull request](https://github.com/statelyai/agent/pull/54) to resolve it. (Note: this was originally reported using my other account.)
Hi 👋, Here's a temporary fix that might help you: ``` useEffect(() => { document.head.querySelectorAll("style").forEach((style) => { if (style.innerHTML.includes("button")) { style.innerHTML = style.innerHTML.replace("border:none", ""); } }); }, []); ``` Hope...