Describe the bug
When you use a fromStore and a derived from it, the signal created with fromStore loses reactivity.
It looks like, the compilation is different (JS Output tab).
with derived:
const count = fromStore(countStore);
without derived defined:
const count = $.mutable_state(fromStore(countStore));
Reproduction
Reproduction
Try commenting out the derived and the counter works
Logs
No response
System Info
Severity
annoyance