File tree 2 files changed +2
-3
lines changed
src/shared/components/challenge-detail
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ export default function ChallengeViewSelector(props) {
42
42
viewAsTable,
43
43
} = props ;
44
44
45
- let showDashboard ;
45
+ let showDashboard = false ;
46
46
const { type, tags, metadata } = challenge ;
47
47
const dashboardMetadata = _ . find ( metadata , { name : 'show_data_dashboard' } ) ;
48
48
if ( dashboardMetadata ) {
@@ -307,7 +307,7 @@ export default function ChallengeViewSelector(props) {
307
307
return '' ;
308
308
} ) ( ) }
309
309
{
310
- ( challenge . track . toLowerCase ( ) === 'data science' && showDashboard ) && (
310
+ ( showDashboard ) && (
311
311
< a
312
312
tabIndex = "0"
313
313
role = "tab"
Original file line number Diff line number Diff line change @@ -137,7 +137,6 @@ export default class Registrants extends React.Component {
137
137
const {
138
138
statisticsData,
139
139
} = this . props ;
140
- console . log ( JSON . stringify ( statisticsData , null , 4 ) ) ;
141
140
let submissionDate ;
142
141
const statistic = ( statisticsData || [ ] ) . find ( x => x . handle === registrant . memberHandle ) ;
143
142
if ( statistic && statistic . submissions && statistic . submissions . length > 0 ) {
You can’t perform that action at this time.
0 commit comments