Skip to content

Commit

Permalink
Final clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
jkettmann committed Dec 8, 2022
1 parent bf082d6 commit 9f2ba50
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions features/ui/select/select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ export function Select<T>({
value,
onChange,
placeholder = "Choose an option",
defaultValue = "",
iconSrc = "",
defaultValue,
iconSrc,
disabled = false,
label = "",
hint = "",
errorMessage = "",
label,
hint,
errorMessage,
...props
}: SelectProps<T>) {
const [showDropdown, setShowDropdown] = useState(false);
Expand Down

0 comments on commit 9f2ba50

Please sign in to comment.