@ -29,9 +29,7 @@ export class Linkify extends React.Component<Props> {
let count = 1;
if (isRss && text.indexOf('</') !== -1) {
results.push(
<SessionHtmlRenderer key={count++} html={text} tag="div" />
);
results.push(<SessionHtmlRenderer key={count++} html={text} tag="div" />);
// should already have links
return results;
@ -15,7 +15,6 @@ export class AccentText extends React.PureComponent<Props> {
public render() {
const { showSubtitle, i18n } = this.props;
return (
<div className="session-content-accent-text">
<div className="session-content-accent-text title">
@ -26,8 +25,8 @@ export class AccentText extends React.PureComponent<Props> {
<SessionHtmlRenderer html={i18n('ensuringPeaceOfMind...')} />
</div>
) : (
''
)}
}
@ -57,8 +57,8 @@ const Tab = ({
}) => {
const handleClick = onSelect
? () => {
onSelect({ type });
: undefined;
@ -9,7 +9,11 @@ interface ReceivedProps {
type Props = ReceivedProps;
export const SessionHtmlRenderer: React.SFC<Props> = ({ tag = 'div', key, html }) => {
export const SessionHtmlRenderer: React.SFC<Props> = ({
tag = 'div',
key,
html,
const clean = DOMPurify.sanitize(html, {
USE_PROFILES: { html: true },
FORBID_ATTR: ['style', 'script'],