We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This happens only in android without remote js debug.
Here is my store:
class UserStore { @observable token = null; @observable location = null; @observable mobile_number = null; @action.bound updateToken(token = "") { this.token = token; } @action.bound updateLocation(location) { this.location = location; } @action.bound updateMobileNumber(mobile_number) { this.mobile_number = mobile_number; } } class RootStore { @persist("object") @observable userStore = new UserStore(); }
Here is hydrate call
hydrate("userStore", this.props.store, { token: null, location: null, mobile_number: null }).then(() => { console.log("UserStore obtained"); });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This happens only in android without remote js debug.
Here is my store:
Here is hydrate call
The text was updated successfully, but these errors were encountered: