I have a plugin that iterates over a ComponentNodeSet. Here’s a short snippet:
  const item = componentSetNode.children[ix] as ComponentNode;
  const textNodes = item.findAllWithCriteria({ types: ["TEXT"] });
Â
This worked until a few months ago, but now it is returning an array of zero length. I checked that the ComponentNode has the correct name, and it has several descendant TextNodes.
Â
This process has been very slow in the past, but now it just stopped working. So far I haven’t had any luck trying to figure out what’s wrong. Nothing’s changed in the code.
