Fix future value never updating

This commit is contained in:
Evan Almloff 2023-07-21 12:47:51 -07:00
parent bfc8240438
commit 8af0f0a76a

View file

@ -57,6 +57,9 @@ where
state.needs_regen.set(false);
}
// update the current value
state.state.current_val = val.current_val.clone();
state
}