From 19a41584191af955c8cebb0447ea9086e6dc6c99 Mon Sep 17 00:00:00 2001 From: yangdx Date: Thu, 2 Oct 2025 22:01:00 +0800 Subject: [PATCH] Fix linting --- lightrag_webui/src/hooks/useLightragGraph.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightrag_webui/src/hooks/useLightragGraph.tsx b/lightrag_webui/src/hooks/useLightragGraph.tsx index 124e837d..a52a7391 100644 --- a/lightrag_webui/src/hooks/useLightragGraph.tsx +++ b/lightrag_webui/src/hooks/useLightragGraph.tsx @@ -343,7 +343,7 @@ const fetchGraph = async (label: string, maxDepth: number, maxNodes: number) => console.error(`Source node ${edge.source} is undefined`) continue } - + const targetNode = rawData.nodes[target] if (!targetNode) { console.error(`Target node ${edge.target} is undefined`)