diff --git a/app/components/Views/Settings/NetworksSettings/index.js b/app/components/Views/Settings/NetworksSettings/index.js index e3d0fc7f0d8..6419bcac3cc 100644 --- a/app/components/Views/Settings/NetworksSettings/index.js +++ b/app/components/Views/Settings/NetworksSettings/index.js @@ -155,7 +155,11 @@ class NetworksSettings extends PureComponent { this.updateNavBar(); }; - componentDidUpdate = () => { + componentDidUpdate = (prevProps) => { + if (this.props.networkConfigurations !== prevProps.networkConfigurations) { + this.handleSearchTextChange(this.state.searchString); + } + this.updateNavBar(); };