From 879e78eb59b7d79e9eaf187cda8a9449a9784592 Mon Sep 17 00:00:00 2001 From: Saeed Abadiyan Date: Tue, 19 Aug 2025 06:35:13 +0330 Subject: [PATCH] fix the collabraion --- app/components/ecosystem/network-graph.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/components/ecosystem/network-graph.tsx b/app/components/ecosystem/network-graph.tsx index 41fc9e3..d3ec6f6 100644 --- a/app/components/ecosystem/network-graph.tsx +++ b/app/components/ecosystem/network-graph.tsx @@ -432,17 +432,18 @@ export function NetworkGraph({ onNodeClick }: NetworkGraphProps) { const responseData = JSON.parse(res.data); const fieldValues = JSON.parse(responseData?.getvalue)?.[0]?.FieldValues || []; - // Filter out image fields and find description const filteredFields = fieldValues.filter( (field: any) => - !["image", "img", "full_name"].includes(field.F.toLowerCase()), + !["image", "img", "full_name", "about_collaboration"].includes( + field.F.toLowerCase(), + ), ); const descriptionField = fieldValues.find( (field: any) => field.F.toLowerCase().includes("description") || - field.F.toLowerCase().includes("collaboration") || + field.F.toLowerCase().includes("about_collaboration") || field.F.toLowerCase().includes("about"), );