We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e091357 commit 5cb364aCopy full SHA for 5cb364a
src/modules/universe/NeuroJsonGraph.tsx
@@ -53,7 +53,7 @@ const NeuroJsonGraph: React.FC<{ registry: Database[] }> = ({ registry }) => {
53
};
54
55
// Initialize 3D Force Graph
56
- const Graph = ForceGraph3D()(graphRef.current)
+ const Graph = new ForceGraph3D(graphRef.current)
57
.graphData(graphData)
58
.nodeRelSize(2)
59
.nodeColor((node) => (node as NodeObject).color || "rgba(255,255,255,1)") // White nodes
0 commit comments