react-component / util

Common Utils For React Component
util.vercel.app
MIT License
621 stars 177 forks source link

injectCSS throw `This document requires 'TrustedHTML' assignment.` #555

Open coolcorexix opened 3 weeks ago

coolcorexix commented 3 weeks ago

When trying to inject the Modal Component from antd design to Gmail page with a chrome extension, I have this error which broke the attempt.

image image

But if I edit the built output to wrap a try / catch around the line of code that create the problem then everything go smoothly

try {
styleNode.innerHTML = css;
} catch {
}

I am confused, this is preventing me from making my chrome extension work on Gmail.