From 8cb865a66e5caf4503538ab243ed57d4e7b88259 Mon Sep 17 00:00:00 2001 From: bry Date: Fri, 1 Dec 2023 12:03:00 -0600 Subject: [PATCH] fix wrong type --- src/utils/parseMarkup.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/parseMarkup.tsx b/src/utils/parseMarkup.tsx index 40d510fa7..1b77f6c74 100644 --- a/src/utils/parseMarkup.tsx +++ b/src/utils/parseMarkup.tsx @@ -107,7 +107,7 @@ const parseNode = ( ...attrs, children: element.childNodes.map(parseNode), }, - key: Math.random(), + key: Math.random().toString(), } }