File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
components/challenge-detail/Checkpoints
containers/challenge-detail Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ function Checkpoints(props) {
47
47
} }
48
48
/>
49
49
{
50
- checkpointResults && checkpointResults . map ( ( item ) => (
50
+ checkpointResults && checkpointResults . map ( item => (
51
51
< div key = { item . submissionId } styleName = "challenge-checkpoint-winners" >
52
52
< button
53
53
onClick = { ( e ) => {
Original file line number Diff line number Diff line change @@ -762,7 +762,7 @@ function mapStateToProps(state, props) {
762
762
mySubmissions = _ . filter ( challenge . submissions , s => ( `${ s . memberId } ` === `${ auth . user . userId } ` ) ) ;
763
763
}
764
764
}
765
- const { page : { challengeDetails : { feedbackOpen } } } = state ;
765
+ const { page : { challengeDetails : { feedbackOpen } } } = state ;
766
766
const checkpoints = state . challenge . checkpoints || { } ;
767
767
if ( feedbackOpen . id && checkpoints . checkpointResults ) {
768
768
checkpoints . checkpointResults = checkpoints . checkpointResults . map ( result => ( {
You can’t perform that action at this time.
0 commit comments