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