Skip to content

Commit

Permalink
Fix typo in select option value
Browse files Browse the repository at this point in the history
  • Loading branch information
gitryder committed Jul 8, 2021
1 parent 1cf7f13 commit 33b7a1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/kit/components/form/select/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const Select = () => {
className="block w-52 text-gray-700 py-2 px-3 border border-gray-300 bg-white rounded-md shadow-sm focus:outline-none focus:ring-primary-500 focus:border-primary-500"
name="animals"
>
<option value="">Select an options</option>
<option value="">Select an option</option>
<option value="dog">Dog</option>
<option value="cat">Cat</option>
<option value="hamster">Hamster</option>
Expand Down

0 comments on commit 33b7a1f

Please sign in to comment.