Skip to content

Commit

Permalink
closer to original implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
legrego committed Apr 1, 2021
1 parent d16d1d4 commit 39acb79
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const TemplateComponent = ({ defPairs }: Props) => {
dangerouslySetInnerHTML={{ __html: `${escape(pair[0])}:` }} // eslint-disable-line react/no-danger
/>
<dd
dangerouslySetInnerHTML={{ __html: `${escape(pair[1])}` }} // eslint-disable-line react/no-danger
dangerouslySetInnerHTML={{ __html: `${pair[1]}` }} // eslint-disable-line react/no-danger
/>{' '}
</Fragment>
))}
Expand Down

0 comments on commit 39acb79

Please sign in to comment.