File tree 1 file changed +1
-5
lines changed
1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change 6
6
* Connects the Redux store to the Challenge Submissions display components.
7
7
* Passes the relevent state and setters as properties to the UI components.
8
8
*/
9
- import _ from 'lodash' ;
10
9
import actions from 'actions/page/submission' ;
11
10
import communityActions from 'actions/tc-communities' ;
12
11
import shortId from 'shortid' ;
@@ -15,7 +14,6 @@ import PT from 'prop-types';
15
14
import { connect } from 'react-redux' ;
16
15
import SubmissionsPage from 'components/SubmissionPage' ;
17
16
import AccessDenied , { CAUSE as ACCESS_DENIED_REASON } from 'components/tc-communities/AccessDenied' ;
18
- import { USER_GROUP_MAXAGE } from 'config' ;
19
17
20
18
/**
21
19
* SubmissionsPage Container
@@ -29,12 +27,10 @@ class SubmissionsPageContainer extends React.Component {
29
27
componentDidMount ( ) {
30
28
const {
31
29
auth,
32
- groups,
33
- communitiesList,
34
30
getCommunitiesList,
35
31
} = this . props ;
36
32
37
- getCommunitiesList ( auth ) ;
33
+ getCommunitiesList ( auth ) ;
38
34
}
39
35
40
36
/* A child component has called their submitForm() prop, prepare the passed
You can’t perform that action at this time.
0 commit comments