This repository has been archived by the owner on Feb 14, 2023. It is now read-only.
Class components should not subscribe to state changes in the constructor. #103
Labels
help wanted
The owner cannot resolve this on their own.
Milestone
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 thatthis.updater
does not exist.Either check that
this.updater
exists or prevent subscribing in the constructor (if possible to differentiate).The text was updated successfully, but these errors were encountered: