I'm displaying user comments on react with DomPurify. When the user enters a dangerous strings: eg ' it gets encoded, how can I safely decode it?
Here is the code:
<p className="donor-comment">
{DOMPurify.sanitize(hit.comment)}
</p>
Thanks in advance

You don't have to escape user input manually or by using third-party libs like DOMPurify. React DOM does it by default.
https://reactjs.org/docs/introducing-jsx.html#jsx-prevents-injection-attacks