1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-28 00:17:12 +01:00

fix: add removed back after deleting from updated (#9099)

This commit is contained in:
Jaanus Sellin 2025-01-15 10:40:28 +02:00 committed by GitHub
parent a2b78df0ad
commit d6ec0f1776
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -59,6 +59,7 @@ const applyRevision = (first: Revision, last: Revision): Revision => {
for (const feature of last.removed) { for (const feature of last.removed) {
updatedMap.delete(feature.name); updatedMap.delete(feature.name);
removedMap.set(feature.name, feature);
} }
return { return {