From 5513f7323054468ce2a4c0e107c743eb69fb53f1 Mon Sep 17 00:00:00 2001 From: Nick-Laptop Date: Wed, 6 May 2026 13:05:29 -0400 Subject: [PATCH] Removed target.render call inside notify --- store.js | 1 - 1 file changed, 1 deletion(-) diff --git a/store.js b/store.js index cd7d73c..d17970f 100644 --- a/store.js +++ b/store.js @@ -44,7 +44,6 @@ class AbstractStore { notify() { this.subscribers.forEach(({ target, props }) => { this.notifyCall(target, this.getSelectedState(props)) - target.render(this.getSelectedState(props)) }) }