Skip to content

Commit

Permalink
Removed extra semicolon (#3175)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Aug 23, 2022
1 parent 24a6983 commit 3afc95c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/dropdown/Dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ export const Dropdown = React.memo(
return (
<div className="p-hidden-accessible p-dropdown-hidden-select">
<select ref={inputRef} required={props.required} defaultValue={option.value} name={props.name} tabIndex={-1} aria-hidden="true">
<option value={option.value}>{option.label}</option>;
<option value={option.value}>{option.label}</option>
</select>
</div>
);
Expand Down

0 comments on commit 3afc95c

Please sign in to comment.