Removed the unused total property

This commit is contained in:
WBHarry 2026-06-21 00:09:16 +02:00
parent 6b80a6243c
commit 4221722079
6 changed files with 19 additions and 20 deletions

View file

@ -459,8 +459,7 @@ export class ResourceUpdateMap extends Map {
} else if (!existing?.clear) {
this.set(resource.key, {
...existing,
value: existing.value + (resource.value ?? 0),
total: existing.total + (resource.total ?? 0)
value: existing.value + (resource.value ?? 0)
});
}
}