From fa6f17fa832d6c8a1b9f73f8fb81b52da20ac484 Mon Sep 17 00:00:00 2001 From: Sebastian Streich Date: Wed, 11 Dec 2024 17:42:44 +0100 Subject: [PATCH] remove more dead code --- src/shared/property.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/shared/property.js b/src/shared/property.js index 6763be2e..b1ea9258 100644 --- a/src/shared/property.js +++ b/src/shared/property.js @@ -181,7 +181,6 @@ export const propertySum = (transform, ...parent) => { }; const inner = new WritableProperty(transform(...getValues())); const onUpdated = () => { - const values = getValues(); inner.set(transform(...getValues())); }; parent.forEach((p) => {