-
Notifications
You must be signed in to change notification settings - Fork 279
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Batch callback error when implementing the Comments Bubble #12
Comments
same issue |
The error comes from the useUser in the OverlayThread function. Everything should work fine if you comment that out. @BR-BelalRezk |
It worked , but I don't get it "Why is that ?". |
I did the same too. I think it’s due to the fact that the application doesn’t have any authentication implemented. |
If it works , don't touch it😂 |
😂😂 |
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}
/>
))}
The text was updated successfully, but these errors were encountered: