Skip to content

Commit

Permalink
fix: remove deleted event from being update event
Browse files Browse the repository at this point in the history
  • Loading branch information
sjaanus committed Jan 16, 2025
1 parent 221334d commit dbac85e
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 dbac85e

Please sign in to comment.