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 Feb 14, 2023. It is now read-only.
If a component has be instantiated (constructor has executed) but not yet mounted, this.updater will be undefined. If the global state is accessed in the constructor, it will subscribe. If it changes before mount, it will attempt to update, throwing an error that this.updater does not exist.
Either check that this.updater exists or prevent subscribing in the constructor (if possible to differentiate).
If a component has be instantiated (constructor has executed) but not yet mounted,
this.updaterwill be undefined. If the global state is accessed in the constructor, it will subscribe. If it changes before mount, it will attempt to update, throwing an error thatthis.updaterdoes not exist.Either check that
this.updaterexists or prevent subscribing in the constructor (if possible to differentiate).