Skip to content

Commit

Permalink
fix(reka): do not include child components in recursive search
Browse files Browse the repository at this point in the history
  • Loading branch information
prevwong committed Apr 2, 2024
1 parent 8473e6f commit f86d312
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export class ComponentViewEvaluator {
...this.ctx,
path: [...this.ctx.path, child.id],
owner: this.ctx.owner,
componentStack: [...this.ctx.componentStack, component],
componentStack: [...this.ctx.componentStack],
})
);

Expand Down

0 comments on commit f86d312

Please sign in to comment.