Skip to content

Commit

Permalink
Fix validation for previous TEST dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
justinyaodu committed Sep 30, 2023
1 parent 67be7a7 commit babbd63
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/components/ApplicationForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ const ApplicationForm = (props) => {
updatePersonalInfo("startQuarter", e.target.value);
}}
>
<option value="" disabled>select...</option>
<option value="">select...</option>
<option value="0">Winter</option>
<option value="1">Spring</option>
{/* Hide summer because people often select summer when they mean spring. */}
Expand Down Expand Up @@ -225,7 +225,7 @@ const ApplicationForm = (props) => {
updatePersonalInfo("gradQuarter", e.target.value);
}}
>
<option value="" disabled>select...</option>
<option value="">select...</option>
<option value="0">Winter</option>
<option value="1">Spring</option>
{/* Hide summer because people often select summer when they mean spring. */}
Expand Down Expand Up @@ -330,7 +330,7 @@ const ApplicationForm = (props) => {
updatePersonalInfo("prevTest", e.target.value);
}}
>
<option>select...</option>
<option value="">select...</option>
<option value="none">I was not a part of the TEST program</option>
<option value="test_designer">TEST Designer</option>
<option value="test_developer">TEST Developer</option>
Expand Down

0 comments on commit babbd63

Please sign in to comment.