Skip to content

Commit

Permalink
linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Salam-Dalloul committed Sep 18, 2024
1 parent 481bf37 commit 297b73b
Showing 1 changed file with 1 addition and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,15 +114,7 @@ export const computeGraphDifferences = (
});
const groupPosition = calculateMeanPosition(groupNeurons, workspace);
nodesToAdd.push(
createNode(
nodeId,
selectedNeurons.includes(nodeId),
Array.from(attributes),
groupPosition,
true,
undefined,
workspace.activeNeurons.has(nodeId),
),
createNode(nodeId, selectedNeurons.includes(nodeId), Array.from(attributes), groupPosition, true, undefined, workspace.activeNeurons.has(nodeId)),
);
} else {
let parent = undefined;
Expand Down

0 comments on commit 297b73b

Please sign in to comment.