From ace0ceef047c309948b639e090850c955baece66 Mon Sep 17 00:00:00 2001
From: Pierre Ferreira
Date: Mon, 20 Nov 2023 08:24:56 +0100
Subject: [PATCH] fix ci build :green_heart:
---
cryptide_project/src/Components/GraphContainer.tsx | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/cryptide_project/src/Components/GraphContainer.tsx b/cryptide_project/src/Components/GraphContainer.tsx
index e50d915..88d0ab8 100644
--- a/cryptide_project/src/Components/GraphContainer.tsx
+++ b/cryptide_project/src/Components/GraphContainer.tsx
@@ -177,6 +177,7 @@ const MyGraphComponent: React.FC = ({onNodeClick, handleS
}
else{
askedPersons.push(pers)
+ //@ts-ignore
const node = nodes.get().find((n) => nodeId == n.id)
if (node != undefined && indice != null){
var tester = IndiceTesterFactory.Create(indice)
@@ -238,6 +239,7 @@ const MyGraphComponent: React.FC = ({onNodeClick, handleS
setNodeIdData(params.nodes[0])
if (!solo){
if (askedWrong){
+ //@ts-ignore
const person = personNetwork?.getPersons().find((p) => p.getId() == params.nodes[0])
if (person !== undefined && indice !== null){
const tester = IndiceTesterFactory.Create(indice)
@@ -260,6 +262,7 @@ const MyGraphComponent: React.FC = ({onNodeClick, handleS
}
}
else{ // si solo -> Mastermind
+ //@ts-ignore
const person = personNetwork?.getPersons().find((p) => p.getId() == params.nodes[0]) //person sélectionnée
if (person != undefined){
let index = 0;
@@ -267,6 +270,7 @@ const MyGraphComponent: React.FC = ({onNodeClick, handleS
for(const i of indices){
const tester = IndiceTesterFactory.Create(i)
const test = tester.Works(person)
+ //@ts-ignore
const node = nodes.get().find((n) => params.nodes[0] == n.id)
if (node!=undefined){
networkData.nodes.update({id: params.nodes[0], label: node.label + colorToEmoji(positionToColor(index), test)})