Fix Component#componentDidUpdate usage (#5977)

feature/default_network_editable
Bowen 6 years ago committed by Whymarrh Whitby
parent cdb202a65e
commit 866b9af69e
  1. 6
      ui/app/components/token-list.js

@ -134,17 +134,17 @@ TokenList.prototype.createFreshTokenTracker = function () {
})
}
TokenList.prototype.componentDidUpdate = function (nextProps) {
TokenList.prototype.componentDidUpdate = function (prevProps) {
const {
network: oldNet,
userAddress: oldAddress,
tokens,
} = this.props
} = prevProps
const {
network: newNet,
userAddress: newAddress,
tokens: newTokens,
} = nextProps
} = this.props
const isLoading = newNet === 'loading'
const missingInfo = !oldNet || !newNet || !oldAddress || !newAddress

Loading…
Cancel
Save