You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 31, 2020. It is now read-only.
authorItem is observable class instance, that is updated asynchronously by different part of the app. First run displays "loading" (correct, no data still available). Then the item is updated, but the components is not (still shows "loading").
When I uncomment the line const author = toJS(authorItem).data;, the components starts updating correctly and correct data are displayed.
Am I doing something fundamentally wrong with mobx, here?
Thanks.
PS: I tried even to rewrite AuthorLink (observer) to accept authorItem (observable) and make dereferencing there… no change, still not updating.