Alexander Köhler

Results 2 comments of Alexander Köhler

I believe the issues occurs when neither nodes or edges are added. I've solved the issue by adding this check before calling the layout function: ``` if (nodes.length > 0...

For anyone not using next, what worked for me was utilizing React.lazy for importing the GaugeChart: `const GaugeChart = lazy(() => import("react-gauge-chart"))`