We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56c580b commit 3ebb278Copy full SHA for 3ebb278
src/shared/containers/SubmissionManagement/index.jsx
@@ -27,7 +27,6 @@ class SubmissionManagementPageContainer extends React.Component {
27
authTokens,
28
challenge,
29
challengeId,
30
- mySubmissions,
31
loadChallengeDetails,
32
loadingSubmissionsForChallengeId,
33
loadMySubmissions,
@@ -38,7 +37,7 @@ class SubmissionManagementPageContainer extends React.Component {
38
37
loadChallengeDetails(authTokens, challengeId);
39
}
40
41
- if (!mySubmissions && challengeId !== loadingSubmissionsForChallengeId) {
+ if (challengeId !== loadingSubmissionsForChallengeId) {
42
loadMySubmissions(authTokens, challengeId);
43
44
0 commit comments