Skip to content

Commit

Permalink
fix(core): 🐛 properly match self transition
Browse files Browse the repository at this point in the history
  • Loading branch information
xavierfoucrier committed Jul 27, 2023
1 parent e27736f commit f7bd01c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/core/src/modules/Store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ export class Store {
const match = {};

if (filters.self && t.name === 'self') {
matching.set(t, match);
return true;
}

Expand Down

0 comments on commit f7bd01c

Please sign in to comment.