fix: fix eslint issues, adjust norm test for dev merge

ref: N25B-371
This commit is contained in:
Björn Otgaar
2025-12-03 11:41:14 +01:00
parent f0c250626f
commit c167144b4d
6 changed files with 17 additions and 12 deletions

View File

@@ -79,7 +79,7 @@ export function PhaseReduce(node: Node, nodes: Node[]) {
.map(([t]) => t);
// children nodes - make sure to check for empty arrays
let childrenNodes: any[] = [];
let childrenNodes: Node[] = [];
if (data.children)
childrenNodes = nodes.filter((node) => data.children.includes(node.id));