👌 remove eslint disable lines
This commit is contained in:
parent
ed989eed6c
commit
78d4fc42a5
3 changed files with 3 additions and 3 deletions
|
@ -48,7 +48,7 @@ class NewFileForm extends React.Component {
|
|||
|
||||
NewFileForm.propTypes = {
|
||||
fields: PropTypes.shape({
|
||||
name: PropTypes.object.isRequired // eslint-disable-line
|
||||
name: PropTypes.object.isRequired
|
||||
}).isRequired,
|
||||
handleSubmit: PropTypes.func.isRequired,
|
||||
createFile: PropTypes.func.isRequired,
|
||||
|
|
|
@ -49,7 +49,7 @@ class NewFolderForm extends React.Component {
|
|||
|
||||
NewFolderForm.propTypes = {
|
||||
fields: PropTypes.shape({
|
||||
name: PropTypes.object.isRequired // eslint-disable-line
|
||||
name: PropTypes.object.isRequired
|
||||
}).isRequired,
|
||||
handleSubmit: PropTypes.func.isRequired,
|
||||
createFolder: PropTypes.func.isRequired,
|
||||
|
|
|
@ -32,7 +32,7 @@ function ResetPasswordForm(props) {
|
|||
|
||||
ResetPasswordForm.propTypes = {
|
||||
fields: PropTypes.shape({
|
||||
email: PropTypes.object.isRequired // eslint-disable-line
|
||||
email: PropTypes.object.isRequired
|
||||
}).isRequired,
|
||||
handleSubmit: PropTypes.func.isRequired,
|
||||
initiateResetPassword: PropTypes.func.isRequired,
|
||||
|
|
Loading…
Reference in a new issue