Skip to content

Commit

Permalink
remove default values from application dropdowns (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
rileysw authored Dec 16, 2023
1 parent 103c95e commit ee24545
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ export default function DropdownSelect({
name={name}
id={name}
onChange={(e) => setValue(e.target.value)}
required
>
<option value="" selected disabled hidden></option>
{values.map((item, i) => {
return (
<option key={`option-${i}`} value={item.value}>
Expand Down

0 comments on commit ee24545

Please sign in to comment.