figma_clone
figma_clone copied to clipboard
Batch callback error when implementing the Comments Bubble
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}
/>
))}