We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b169b8b commit d5d2811Copy full SHA for d5d2811
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