Skip to content

Commit 3924de9

Browse files
committed
format
1 parent 8b9ecef commit 3924de9

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/McpContext.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -970,7 +970,9 @@ export class McpContext implements Context {
970970
idToNode.set(extraNode.id, extraNode);
971971
const attachTarget = (await findAncestorNode(handle)) || rootNodeWithId;
972972
if (extraNode.backendNodeId !== undefined) {
973-
const descendantIds = await findDescendantNodes(extraNode.backendNodeId);
973+
const descendantIds = await findDescendantNodes(
974+
extraNode.backendNodeId,
975+
);
974976
const index = moveChildNodes(attachTarget, extraNode, descendantIds);
975977
attachTarget.children.splice(index, 0, extraNode);
976978
}

0 commit comments

Comments
 (0)