Skip to content

Commit d710a0d

Browse files
authored
Update SubmissionPage.jsx
1 parent 18f185a commit d710a0d

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/shared/containers/SubmissionPage.jsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
* Connects the Redux store to the Challenge Submissions display components.
77
* Passes the relevent state and setters as properties to the UI components.
88
*/
9-
import _ from 'lodash';
109
import actions from 'actions/page/submission';
1110
import communityActions from 'actions/tc-communities';
1211
import shortId from 'shortid';
@@ -15,7 +14,6 @@ import PT from 'prop-types';
1514
import { connect } from 'react-redux';
1615
import SubmissionsPage from 'components/SubmissionPage';
1716
import AccessDenied, { CAUSE as ACCESS_DENIED_REASON } from 'components/tc-communities/AccessDenied';
18-
import { USER_GROUP_MAXAGE } from 'config';
1917

2018
/**
2119
* SubmissionsPage Container
@@ -29,12 +27,10 @@ class SubmissionsPageContainer extends React.Component {
2927
componentDidMount() {
3028
const {
3129
auth,
32-
groups,
33-
communitiesList,
3430
getCommunitiesList,
3531
} = this.props;
3632

37-
getCommunitiesList(auth);
33+
getCommunitiesList(auth);
3834
}
3935

4036
/* A child component has called their submitForm() prop, prepare the passed

0 commit comments

Comments
 (0)