Skip to content

Commit

Permalink
fix wrong type
Browse files Browse the repository at this point in the history
  • Loading branch information
bryzettler committed Dec 1, 2023
1 parent 5f19180 commit 8cb865a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/parseMarkup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ const parseNode = (
...attrs,
children: element.childNodes.map(parseNode),
},
key: Math.random(),
key: Math.random().toString(),
}
}

Expand Down

0 comments on commit 8cb865a

Please sign in to comment.