@@ -19,7 +19,7 @@ import SubmissionHistoryRow from './SubmissionHistoryRow';
1919import style from './style.scss' ;
2020
2121export default function SubmissionRow ( {
22- isMM, isRDM , openHistory, member, submissions, score, toggleHistory, challengeStatus,
22+ isMM, openHistory, member, submissions, score, toggleHistory, challengeStatus,
2323 isReviewPhaseComplete, finalRank, provisionalRank, onShowPopup, rating, viewAsTable,
2424 numWinners, auth, isLoggedIn,
2525} ) {
@@ -166,8 +166,7 @@ export default function SubmissionRow({
166166 Time
167167 </ div >
168168 {
169- ( isMM || isRDM )
170- && ( numWinners > 0 || challengeStatus === CHALLENGE_STATUS . COMPLETED ) && (
169+ isMM && ( numWinners > 0 || challengeStatus === CHALLENGE_STATUS . COMPLETED ) && (
171170 < div styleName = "col-2 col center" >
172171 Action
173172 </ div >
@@ -186,7 +185,6 @@ export default function SubmissionRow({
186185 < SubmissionHistoryRow
187186 isReviewPhaseComplete = { isReviewPhaseComplete }
188187 isMM = { isMM }
189- isRDM = { isRDM }
190188 challengeStatus = { challengeStatus }
191189 submission = { submissions . length - index }
192190 { ...submissionHistory }
@@ -226,7 +224,6 @@ SubmissionRow.defaultProps = {
226224
227225SubmissionRow . propTypes = {
228226 isMM : PT . bool . isRequired ,
229- isRDM : PT . bool . isRequired ,
230227 openHistory : PT . bool . isRequired ,
231228 member : PT . string . isRequired ,
232229 challengeStatus : PT . string . isRequired ,
0 commit comments