diff --git a/frontend/src/Graph.svelte b/frontend/src/Graph.svelte
index 6307128..b8b2da9 100644
--- a/frontend/src/Graph.svelte
+++ b/frontend/src/Graph.svelte
@@ -20,7 +20,7 @@
// when we update nodes and edges
let [nodes, edges] = createNodesAndEdges(tasks);
function hack() {
- [nodes, edges] = createNodesAndEdges(tasks);
+ [nodes, edges] = createNodesAndEdges(tasks, nodes, edges);
runSimulation();
}
$: {
@@ -103,8 +103,6 @@
}
-{@debug tasks}
-