Remove unnecessary `shouldComponentUpdate` (#7875)
The `confirm-seed-phrase` component extends PureComponent, so it doesn't need a `shouldComponentUpdate` function. The state is effectively immutable, as all state is either a primitive type or is updated with new instances rather than mutation. Removing this function will silence a warning message printed to the console during e2e tests (React doesn't want you to set this function on `PureComponent`s). Removing this function also exposed an unused piece of state, which has also been removed.feature/default_network_editable
parent
206920e9bd
commit
6e49d0b5b5
Loading…
Reference in new issue