Skip to content

Commit

Permalink
Merge pull request #68 from gitryder/fix/grammatical-error-in-select-…
Browse files Browse the repository at this point in the history
…boxes

Fix grammatical error in select boxes' default value
  • Loading branch information
Charlie85270 authored Jul 12, 2021
2 parents 1cf7f13 + c7f6232 commit b3b89b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion components/kit/components/form/select/SelectWithLabel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const SelectWithLabel = () => {
className="block w-52 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 b3b89b3

Please sign in to comment.