Skip to content
Snippets Groups Projects
Unverified Commit 375ce95a authored by Tomasz Knapik's avatar Tomasz Knapik
Browse files

typo

parent 66d0e044
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ const getCurrentRoundID = state => state.submissions.currentRound;
const getCurrentRoundSubmissions = createSelector(
[ getSubmissionIDsByRound, getCurrentRoundID , getSubmissions],
(submissionsByRound, currentRoundID, submissions) => {
return (submissionsByRound[currentRoundID] || []).map(roundID => submissions[roundID]);
return (submissionsByRound[currentRoundID] || []).map(submissionID => submissions[submissionID]);
}
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment