mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Merge pull request #4734 from whymarrh/txlistitem-setstate-warning
Prevent calling setState in TxListItem after unmount
This commit is contained in:
commit
e59e92e028
@ -54,6 +54,8 @@ function TxListItem () {
|
|||||||
fiatTotal: null,
|
fiatTotal: null,
|
||||||
isTokenTx: null,
|
isTokenTx: null,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.unmounted = false
|
||||||
}
|
}
|
||||||
|
|
||||||
TxListItem.prototype.componentDidMount = async function () {
|
TxListItem.prototype.componentDidMount = async function () {
|
||||||
@ -67,9 +69,16 @@ TxListItem.prototype.componentDidMount = async function () {
|
|||||||
? await this.getSendTokenTotal()
|
? await this.getSendTokenTotal()
|
||||||
: this.getSendEtherTotal()
|
: this.getSendEtherTotal()
|
||||||
|
|
||||||
|
if (this.unmounted) {
|
||||||
|
return
|
||||||
|
}
|
||||||
this.setState({ total, fiatTotal, isTokenTx })
|
this.setState({ total, fiatTotal, isTokenTx })
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TxListItem.prototype.componentWillUnmount = function () {
|
||||||
|
this.unmounted = true
|
||||||
|
}
|
||||||
|
|
||||||
TxListItem.prototype.getAddressText = function () {
|
TxListItem.prototype.getAddressText = function () {
|
||||||
const {
|
const {
|
||||||
address,
|
address,
|
||||||
|
Loading…
Reference in New Issue
Block a user