Closed groyee closed 1 year ago
Hi, I just opened #62, which has the test. It's currently passing. Can you make it to fail?
I tried to make it fail but I couldn't. I went back to my code to find the difference with the test you wrote and I realized that the problem is on my side. My live reload wasn't working properly and the changes I was making didn't take affect.
Apologies for that. My bad. I will close this issue.
Not sure if this is a bug or expected behavior:
I have the following selectors:
When
state.itemA
is changed,GetSelectorA
is being called which is good. But it doesn't callGetSelectorB
(It takes the memoized version) because I guessGetSelectorB
doesn't have direct use ofstate.itemA
? ButGetSelectorB
depends onGetSelectorC
which should be updated whenstate.itemA
is changed...Is it a bug or am I missing something here?