diff --git a/cryptide_project/src/Components/GraphContainer.tsx b/cryptide_project/src/Components/GraphContainer.tsx index 0d20acc..974c179 100644 --- a/cryptide_project/src/Components/GraphContainer.tsx +++ b/cryptide_project/src/Components/GraphContainer.tsx @@ -325,6 +325,7 @@ const MyGraphComponent: React.FC = ({onNodeClick, handleS dailyEnigme.forEach((pairs, index) => { pairs.forEach((pair) => { const i = indices.findIndex((indice) => pair.first.getId() === indice.getId()) + //@ts-ignore const node = networkData.nodes.get().find((n) => index == n.id) if (node != undefined){ networkData.nodes.update({id: node.id, label: node.label + positionToEmoji(i, pair.second)})