Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/components/RenderHTML/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import sanitizeHtml, { IOptions } from 'sanitize-html'

interface RenderHTMLProps {
html: string
dangerousSkipSantization?: boolean
}

const config: IOptions = {
Expand Down Expand Up @@ -69,10 +70,10 @@ const config: IOptions = {
}

export default function RenderHTML(props: RenderHTMLProps) {
const { html } = props
const { html, dangerousSkipSantization } = props

const sanitized = useMemo(() => {
return sanitizeHtml(html, config)
return dangerousSkipSantization ? html : sanitizeHtml(html, config)
}, [html])

return (
Expand Down