Skip to content

Commit

Permalink
fix: remove deleted event from being update event (#9106)
Browse files Browse the repository at this point in the history
The feature was getting into updated array due to feature-deleted event.
  • Loading branch information
sjaanus authored Jan 16, 2025
1 parent 221334d commit 013ddd3
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ export class ClientFeatureToggleDelta {
changeEvents
.filter((event) => event.featureName)
.filter((event) => event.type !== 'feature-archived')
.filter((event) => event.type !== 'feature-deleted')
.map((event) => event.featureName!),
),
];
Expand Down

0 comments on commit 013ddd3

Please sign in to comment.