Skip to content

Commit cb791bf

Browse files
committed
gemini review
1 parent 54fe722 commit cb791bf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dashboard/src/components/GraphVisualization.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ export const GraphVisualization: React.FC<GraphVisualizationProps> = ({
251251

252252
// Convert edges
253253
const reactFlowEdges: Edge[] = graphData.edges.map((edge, index) => ({
254-
id: `edge-${index}`,
254+
id: `edge-${edge.source}-${edge.target}`,
255255
source: edge.source,
256256
target: edge.target,
257257
type: 'default',

0 commit comments

Comments
 (0)