Move store subscribe to didmount

This commit is contained in:
David Baker 2020-04-24 17:36:02 +01:00
parent c684898ba0
commit b3fac7c2cb

View File

@ -38,10 +38,13 @@ export default class SetupEncryptionDialog extends React.Component {
super(); super();
this.store = SetupEncryptionStore.sharedInstance(); this.store = SetupEncryptionStore.sharedInstance();
this.store.on("update", this._onStoreUpdate);
this.state = {icon: iconFromPhase(this.store.phase)}; this.state = {icon: iconFromPhase(this.store.phase)};
} }
componentDidMount() {
this.store.on("update", this._onStoreUpdate);
}
componentWillUnmount() { componentWillUnmount() {
this.store.removeListener("update", this._onStoreUpdate); this.store.removeListener("update", this._onStoreUpdate);
} }