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
constlistLoading=useTracker(()=>{// Note that this subscription will get cleaned up// when your component is unmounted or deps change.consthandle=Meteor.subscribe('todoList',listId);return!handle.ready();},[listId]);
However, if I try it out, the returned value is always true, i.e. ready() is always false.
The text was updated successfully, but these errors were encountered:
According to the docs, this should work:
However, if I try it out, the returned value is always true, i.e. ready() is always false.
The text was updated successfully, but these errors were encountered: