I get this error when trying to see the result of the Comments Bubble feature.



But when I comment out this block of code from CommentsOverlay.tsx the error goes away. which means the error is most likely coming from somewhere in OverlayThread component. Any tips on how to fix this error will be greatly appreciated.
{threads
.filter((thread) => !thread.metadata.resolved)
.map((thread) => (
<OverlayThread
key={thread.id}
thread={thread}
maxZIndex={maxZIndex}
/>
))}
I get this error when trying to see the result of the Comments Bubble feature.
But when I comment out this block of code from CommentsOverlay.tsx the error goes away. which means the error is most likely coming from somewhere in OverlayThread component. Any tips on how to fix this error will be greatly appreciated.
{threads.filter((thread) => !thread.metadata.resolved).map((thread) => (<OverlayThreadkey={thread.id}thread={thread}maxZIndex={maxZIndex}/>))}