Skip to content

Commit

Permalink
remove mentor nominations
Browse files Browse the repository at this point in the history
  • Loading branch information
jackyzha0 committed Nov 7, 2022
1 parent f6d2407 commit 033415b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions src/components/Judging/SubmissionForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -407,15 +407,21 @@ export default ({
{errors.self && <ErrorMessage>{errors.self}</ErrorMessage>}
</FormSection>
<StyledHr />
//{' '}
<FormSection>
//{' '}
<div>
<Label>Mentor nominations</Label>
// <Label>Mentor nominations</Label>
//{' '}
<P>
Nominate any mentors who helped make your hackathon experience better! Include their
name and/or Slack username and how they helped.
// Nominate any mentors who helped make your hackathon experience better! Include their
// name and/or Slack username and how they helped. //{' '}
</P>
//{' '}
</div>
//{' '}
<TextArea value={mentorNominations} maxLength={MAX_CHARS} onChange={setMentorNominations} />
//{' '}
</FormSection>
{Object.keys(errors).length > 0 && (
<ErrorMessage>Please address errors before submitting</ErrorMessage>
Expand Down
2 changes: 1 addition & 1 deletion src/containers/JudgingPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ export default () => {
Link: `${portalLink}/projects/${project.id}`,
Devpost: project.links.devpost,
'Charity choice': project.charityChoice,
'Mentor nominations': project.mentorNominations,
// 'Mentor nominations': project.mentorNominations,
}
project.teamMembers.forEach((member, index) => {
projectInfo[`Member ${index + 1} Name`] = member.name
Expand Down

0 comments on commit 033415b

Please sign in to comment.