Add Linkify test

This commit is contained in:
Deluan
2022-10-07 17:44:16 -04:00
parent 53a4ea673b
commit 62e7492357
2 changed files with 38 additions and 1 deletions
+4 -1
View File
@@ -54,7 +54,10 @@ const Linkify = ({ text, ...rest }) => {
// Push remaining text
if (text.length > lastIndex) {
elements.push(
<span dangerouslySetInnerHTML={{ __html: text.substring(lastIndex) }} />
<span
key={'last-span-key'}
dangerouslySetInnerHTML={{ __html: text.substring(lastIndex) }}
/>
)
}