Skip to content

Commit f4f2219

Browse files
committed
format
1 parent 6c1ad26 commit f4f2219

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
@@ -968,7 +968,9 @@ export class McpContext implements Context {
968968
idToNode.set(extraNode.id, extraNode);
969969
const attachTarget = (await findAncestorNode(handle)) || rootNodeWithId;
970970
if (extraNode.backendNodeId !== undefined) {
971-
const descendantIds = await findDescendantNodes(extraNode.backendNodeId);
971+
const descendantIds = await findDescendantNodes(
972+
extraNode.backendNodeId,
973+
);
972974
const index = moveChildNodes(attachTarget, extraNode, descendantIds);
973975
attachTarget.children.splice(index, 0, extraNode);
974976
}

0 commit comments

Comments
 (0)