Skip to content

Commit

Permalink
Merge pull request #236 from nwplus/first-hackathon-evaluator
Browse files Browse the repository at this point in the history
fix first time hackathon check
  • Loading branch information
meleongg authored Feb 26, 2024
2 parents 7f4312c + ab9ee4d commit e6d938a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion components/Evaluator/ApplicantResponse.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,10 @@ export default function ApplicantResponse({ shouldDisplay, hacker }) {

<ResponseInput label="Role" response={contributionRole} />

<ResponseInput label="Is this your first hackathon?" response={hacker?.skills?.firstTimeHacker ? 'yes' : 'no'} />
<ResponseInput
label="Is this your first hackathon?"
response={hacker?.skills?.numHackathonsAttended === '0' ? 'yes' : 'no'}
/>

{/* <ResponseInput url={waiverURL} label="Waiver" response={waiverURL} /> */}

Expand Down

0 comments on commit e6d938a

Please sign in to comment.