File tree Expand file tree Collapse file tree 6 files changed +16
-16
lines changed Expand file tree Collapse file tree 6 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -478,7 +478,7 @@ IDEView.propTypes = {
478
478
ide : PropTypes . shape ( {
479
479
isPlaying : PropTypes . bool . isRequired ,
480
480
isAccessibleOutputPlaying : PropTypes . bool . isRequired ,
481
- consoleEvent : PropTypes . array , // eslint-disable-line
481
+ consoleEvent : PropTypes . array ,
482
482
modalIsVisible : PropTypes . bool . isRequired ,
483
483
sidebarIsExpanded : PropTypes . bool . isRequired ,
484
484
consoleIsExpanded : PropTypes . bool . isRequired ,
@@ -513,7 +513,7 @@ IDEView.propTypes = {
513
513
updatedAt : PropTypes . string
514
514
} ) . isRequired ,
515
515
editorAccessibility : PropTypes . shape ( {
516
- lintMessages : PropTypes . array . isRequired , // eslint-disable-line
516
+ lintMessages : PropTypes . array . isRequired ,
517
517
} ) . isRequired ,
518
518
updateLintMessage : PropTypes . func . isRequired ,
519
519
clearLintMessage : PropTypes . func . isRequired ,
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ import CopyableInput from '../../IDE/components/CopyableInput';
8
8
import APIKeyList from './APIKeyList' ;
9
9
10
10
export const APIKeyPropType = PropTypes . shape ( {
11
- id : PropTypes . object . isRequired , // eslint-disable-line
12
- token : PropTypes . object , // eslint-disable-line
11
+ id : PropTypes . object . isRequired ,
12
+ token : PropTypes . object ,
13
13
label : PropTypes . string . isRequired ,
14
14
createdAt : PropTypes . string . isRequired ,
15
15
lastUsedAt : PropTypes . string ,
Original file line number Diff line number Diff line change @@ -103,10 +103,10 @@ function AccountForm(props) {
103
103
104
104
AccountForm . propTypes = {
105
105
fields : PropTypes . shape ( {
106
- username : PropTypes . object . isRequired , // eslint-disable-line
107
- email : PropTypes . object . isRequired , // eslint-disable-line
108
- currentPassword : PropTypes . object . isRequired , // eslint-disable-line
109
- newPassword : PropTypes . object . isRequired , // eslint-disable-line
106
+ username : PropTypes . object . isRequired ,
107
+ email : PropTypes . object . isRequired ,
108
+ currentPassword : PropTypes . object . isRequired ,
109
+ newPassword : PropTypes . object . isRequired ,
110
110
} ) . isRequired ,
111
111
user : PropTypes . shape ( {
112
112
verified : PropTypes . number . isRequired ,
Original file line number Diff line number Diff line change @@ -44,8 +44,8 @@ function LoginForm(props) {
44
44
45
45
LoginForm . propTypes = {
46
46
fields : PropTypes . shape ( {
47
- email : PropTypes . object . isRequired , // eslint-disable-line
48
- password : PropTypes . object . isRequired // eslint-disable-line
47
+ email : PropTypes . object . isRequired ,
48
+ password : PropTypes . object . isRequired
49
49
} ) . isRequired ,
50
50
handleSubmit : PropTypes . func . isRequired ,
51
51
validateAndLoginUser : PropTypes . func . isRequired ,
Original file line number Diff line number Diff line change @@ -43,8 +43,8 @@ function NewPasswordForm(props) {
43
43
44
44
NewPasswordForm . propTypes = {
45
45
fields : PropTypes . shape ( {
46
- password : PropTypes . object . isRequired , // eslint-disable-line
47
- confirmPassword : PropTypes . object . isRequired // eslint-disable-line
46
+ password : PropTypes . object . isRequired ,
47
+ confirmPassword : PropTypes . object . isRequired
48
48
} ) . isRequired ,
49
49
handleSubmit : PropTypes . func . isRequired ,
50
50
updatePassword : PropTypes . func . isRequired ,
Original file line number Diff line number Diff line change @@ -71,10 +71,10 @@ function SignupForm(props) {
71
71
72
72
SignupForm . propTypes = {
73
73
fields : PropTypes . shape ( {
74
- username : PropTypes . object . isRequired , // eslint-disable-line
75
- email : PropTypes . object . isRequired , // eslint-disable-line
76
- password : PropTypes . object . isRequired , // eslint-disable-line
77
- confirmPassword : PropTypes . object . isRequired // eslint-disable-line
74
+ username : PropTypes . object . isRequired ,
75
+ email : PropTypes . object . isRequired ,
76
+ password : PropTypes . object . isRequired ,
77
+ confirmPassword : PropTypes . object . isRequired
78
78
} ) . isRequired ,
79
79
handleSubmit : PropTypes . func . isRequired ,
80
80
signUpUser : PropTypes . func . isRequired ,
You can’t perform that action at this time.
0 commit comments