diff --git a/src/routes/load/components/OwnerList/index.jsx b/src/routes/load/components/OwnerList/index.jsx index b1ca3c16..3d5d9b68 100644 --- a/src/routes/load/components/OwnerList/index.jsx +++ b/src/routes/load/components/OwnerList/index.jsx @@ -109,14 +109,13 @@ class OwnerListComponent extends React.PureComponent { const owners = await gnosisSafe.getOwners() const threshold = await gnosisSafe.getThreshold() - const initialValues = calculateSafeValues(owners.sort(), threshold, values) - updateInitialProps(initialValues) - if (!owners) { return } - console.log('eee') + if (this.mounted) { + const initialValues = calculateSafeValues(owners.sort(), threshold, values) + updateInitialProps(initialValues) this.setState(() => ({ owners: owners.sort() })) } } @@ -128,7 +127,6 @@ class OwnerListComponent extends React.PureComponent { render() { const { network, classes } = this.props const { owners } = this.state - console.log(owners) return (