Skip to content

Commit 0777387

Browse files
authored
Merge pull request #4487 from rashmi73/issue_4482
Issue 4482 fix
2 parents 6b60d2a + 6a533fa commit 0777387

File tree

1 file changed

+1
-1
lines changed
  • src/shared/components/challenge-detail/Specification/SideBar

1 file changed

+1
-1
lines changed

src/shared/components/challenge-detail/Specification/SideBar/index.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default function SideBar({
3636
const faqURL = config.URL.INFO.DESIGN_CHALLENGE_SUBMISSION;
3737
let submissionLimitDisplay = 'Unlimited';
3838
const submissionLimit = _.find(metadata, { type: 'submissionLimit' });
39-
const fileTypes = _.find(metadata, { type: 'fileTypes' });
39+
const fileTypes = _.find(metadata, { name: 'fileTypes' });
4040

4141
if (submissionLimit) {
4242
if (submissionLimit.value === 1) {

0 commit comments

Comments
 (0)