Skip to content

Commit

Permalink
Merge pull request #316 from sandeep14k/master-resume
Browse files Browse the repository at this point in the history
only single type resume for application
  • Loading branch information
yashlm authored Aug 13, 2024
2 parents 4138560 + f92070c commit c3611a9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pages/student/rc/[rcid]/opening/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,11 @@ function Openings() {
<em>None</em>
</MenuItem>
{resumes.map((resume) => {
if (resume.verified.Bool && resume.verified.Valid) {
if (
resume.verified.Bool &&
resume.verified.Valid &&
resume.resume_type === "SINGLE"
) {
return <MenuItem value={resume.ID}>{resume.ID}</MenuItem>;
}
return null;
Expand Down

0 comments on commit c3611a9

Please sign in to comment.