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
I realized that the getAll action creator is getting called with countryCode = undefined because ApplicationStore is still not hydrated with the location data that is provided only after the action creator getLocation has been run.
As a result I will have to place the code fragment context.getStore("ApplicationStore").getLocation().get("country_code") into the getAll action creator to make this work, however, this makes the action creator difficult to test because it is now getting data from else where other than its arguments.
In the docs, I see this:
getGUID
is ran at runtime when executeMultiple is called, so wouldn't the user not be loaded by the time the action "loadStuffForUser" is called?The text was updated successfully, but these errors were encountered: