Fix warnings relating to unused values (#196)

This commit is contained in:
rjwats
2020-09-01 11:57:32 +01:00
committed by GitHub
parent 3d50cab9b7
commit 2ed5d26b4e
8 changed files with 8 additions and 8 deletions

View File

@ -106,7 +106,7 @@ class ManageUsersForm extends React.Component<ManageUsersFormProps, ManageUsersF
}
render() {
const { width, data, loadData } = this.props;
const { width, data } = this.props;
const { user, creating } = this.state;
return (
<Fragment>

View File

@ -19,7 +19,7 @@ class SecuritySettingsForm extends React.Component<SecuritySettingsFormProps> {
}
render() {
const { data, handleValueChange, loadData } = this.props;
const { data, handleValueChange } = this.props;
return (
<ValidatorForm onSubmit={this.onSubmit}>
<PasswordValidator