Skip to content

Commit

Permalink
fix: remove archived from delta (#9051)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjaanus authored Jan 3, 2025
1 parent 306f726 commit 9003a7e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export class ClientFeatureToggleDelta {

const removed = changeEvents
.filter((event) => event.featureName && event.project)
.filter((event) => event.type === 'feature-deleted')
.filter((event) => event.type === 'feature-archived')
.map((event) => ({
name: event.featureName!,
project: event.project!,
Expand Down

0 comments on commit 9003a7e

Please sign in to comment.