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.
2 parents b169b8b + d5d2811 commit 169efffCopy full SHA for 169efff
src/shared/components/challenge-detail/Submissions/index.jsx
@@ -327,8 +327,8 @@ class SubmissionsComponent extends React.Component {
327
</div>
328
);
329
330
- const isF2F = challenge.subTrack.indexOf('FIRST_2_FINISH') > -1;
331
- const isBugHunt = challenge.subTrack.indexOf('BUG_HUNT') > -1;
+ const isF2F = track.indexOf('FIRST_2_FINISH') > -1;
+ const isBugHunt = track.indexOf('BUG_HUNT') > -1;
332
333
// copy colorStyle from registrants to submissions
334
_.forEach(sortedSubmissions, (s) => {
0 commit comments