CreateEffect and store properties
I have a store with a property
xyz
that is of type undefined | { a: number, b: number}
and I ran into something I don't quite understand with createEffect
. I pass store.xyz
to a component as a prop and
on changing the value, this triggers:
while this does not:
Is there an explanation for this behavior? I'm running 1.7.11 if that helps.0 Replies