diff --git a/demo/src/views/GraphDataController.tsx b/demo/src/views/GraphDataController.tsx index a374e6ce7..c2edbcdf8 100644 --- a/demo/src/views/GraphDataController.tsx +++ b/demo/src/views/GraphDataController.tsx @@ -12,7 +12,6 @@ const GraphDataController: FC<{ dataset: Dataset; filters: FiltersState }> = ({ * Feed graphology with the new dataset: */ useEffect(() => { - console.log('useEffect GraphDataController.'); if (!graph || !dataset) return; const clusters = keyBy(dataset.clusters, "key"); diff --git a/demo/src/views/Root.tsx b/demo/src/views/Root.tsx index a70c0ddcc..1cf0d635e 100644 --- a/demo/src/views/Root.tsx +++ b/demo/src/views/Root.tsx @@ -32,7 +32,7 @@ const Root: FC = () => { // Load data on mount: useEffect(() => { - fetch(`${process.env.PUBLIC_URL}/dataset_small.json`) + fetch(`${process.env.PUBLIC_URL}/dataset.json`) .then((res) => res.json()) .then((dataset: Dataset) => { setDataset(dataset);