-
SummaryI'm using
I have "use client" specified in both my page.tsx and the my-graph.tsx file. Runtime everything appears to work correctly. Is it safe to ignore the error? It builds and there's no runtime client side errors. I've also attempted using dynamic imports but it doesn't seem to make a difference because it seems the issue is while it parses the Additional informationNo response ExampleNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Yeah, What could happen here is that, they are doing some top level checks on objects that are only available in a browser. Did you pass |
Beta Was this translation helpful? Give feedback.
Yeah,
ssr: false
should do the trick, as per this issue from their repo: sim51/react-sigma#66 (comment)