Skip to content

Commit 194da17

Browse files
committedJun 3, 2022
Get rid of the React changes that were abandoned.
1 parent 01711a6 commit 194da17

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed
 

‎demo/src/views/GraphDataController.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ const GraphDataController: FC<{ dataset: Dataset; filters: FiltersState }> = ({
1212
* Feed graphology with the new dataset:
1313
*/
1414
useEffect(() => {
15-
console.log('useEffect GraphDataController.');
1615
if (!graph || !dataset) return;
1716

1817
const clusters = keyBy(dataset.clusters, "key");

‎demo/src/views/Root.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const Root: FC = () => {
3232

3333
// Load data on mount:
3434
useEffect(() => {
35-
fetch(`${process.env.PUBLIC_URL}/dataset_small.json`)
35+
fetch(`${process.env.PUBLIC_URL}/dataset.json`)
3636
.then((res) => res.json())
3737
.then((dataset: Dataset) => {
3838
setDataset(dataset);

0 commit comments

Comments
 (0)