Experiments: Support new experiment link embeds & fix toolbar patch (#3372)

This commit is contained in:
Mufaro 2025-05-03 03:46:34 +02:00 committed by GitHub
parent 59974a162e
commit 3b53ad0c91
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 31 additions and 12 deletions

View file

@ -64,7 +64,6 @@ function filterTreeWithTargetNode(children: any, predicate: (node: any) => boole
return filterTreeWithTargetNode(children.props?.children, predicate);
}
let childIsTargetChild = false;
for (let i = 0; i < children.length; i++) {
const shouldKeep = filterTreeWithTargetNode(children[i], predicate);