Skip to content

Commit 78d4fc4

Browse files
committed
👌 remove eslint disable lines
1 parent ed989ee commit 78d4fc4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

client/modules/IDE/components/NewFileForm.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class NewFileForm extends React.Component {
4848

4949
NewFileForm.propTypes = {
5050
fields: PropTypes.shape({
51-
name: PropTypes.object.isRequired // eslint-disable-line
51+
name: PropTypes.object.isRequired
5252
}).isRequired,
5353
handleSubmit: PropTypes.func.isRequired,
5454
createFile: PropTypes.func.isRequired,

client/modules/IDE/components/NewFolderForm.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class NewFolderForm extends React.Component {
4949

5050
NewFolderForm.propTypes = {
5151
fields: PropTypes.shape({
52-
name: PropTypes.object.isRequired // eslint-disable-line
52+
name: PropTypes.object.isRequired
5353
}).isRequired,
5454
handleSubmit: PropTypes.func.isRequired,
5555
createFolder: PropTypes.func.isRequired,

client/modules/User/components/ResetPasswordForm.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function ResetPasswordForm(props) {
3232

3333
ResetPasswordForm.propTypes = {
3434
fields: PropTypes.shape({
35-
email: PropTypes.object.isRequired // eslint-disable-line
35+
email: PropTypes.object.isRequired
3636
}).isRequired,
3737
handleSubmit: PropTypes.func.isRequired,
3838
initiateResetPassword: PropTypes.func.isRequired,

0 commit comments

Comments
 (0)