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.
1 parent c9d7467 commit 51c4500Copy full SHA for 51c4500
src/components/ChallengesComponent/ChallengeCard/index.js
@@ -258,11 +258,11 @@ class ChallengeCard extends React.Component {
258
<div className={cn(styles.col4, styles.iconsContainer)}>
259
<div className={styles.faIconContainer}>
260
<FontAwesomeIcon icon={faUser} className={styles.faIcon} />
261
- <span>{challenge.numRegistrants || 0}</span>
+ <span>{challenge.numOfRegistrants || 0}</span>
262
</div>
263
264
<FontAwesomeIcon icon={faFile} className={styles.faIcon} />
265
- <span>{challenge.numSubmissions || 0}</span>
+ <span>{challenge.numOfSubmissions || 0}</span>
266
267
268
0 commit comments