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"), );