Fixes linting errors

This commit is contained in:
Alex Corey 2019-10-24 12:35:30 -04:00
parent 491f4824b0
commit 53b4dd5dbf
2 changed files with 4 additions and 2 deletions

View File

@ -22,7 +22,9 @@ class CredentialsLookup extends React.Component {
credentialTypes: [],
};
this.loadCredentialTypes = this.loadCredentialTypes.bind(this);
this.handleCredentialTypeSelect = this.handleCredentialTypeSelect.bind(this);
this.handleCredentialTypeSelect = this.handleCredentialTypeSelect.bind(
this
);
this.loadCredentials = this.loadCredentials.bind(this);
}

View File

@ -84,7 +84,7 @@ class Lookup extends React.Component {
}
componentDidMount() {
Promise.all([this.getData()]);
Promise.all([this.getData()]);
}
componentDidUpdate(prevProps) {