- client: remove staticIp from apply config

This commit is contained in:
Ildar Kamalov 2020-01-30 18:55:22 +03:00 committed by Simon Zolin
parent eb075198c2
commit 56f4daeb68
1 changed files with 2 additions and 1 deletions

View File

@ -33,7 +33,8 @@ class Setup extends Component {
}
handleFormSubmit = (values) => {
this.props.setAllSettings(values);
const { staticIp, ...config } = values;
this.props.setAllSettings(config);
};
handleFormChange = debounce((values) => {