Skip to content

Commit

Permalink
Revert "Update Select.tsx"
Browse files Browse the repository at this point in the history
This reverts commit 9c7688e.
  • Loading branch information
wtfsayo committed Jul 15, 2024
1 parent 9c7688e commit 52dd5e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/ui/src/forms/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ interface SelectProps extends ChakraProps {
tooltip?: string;
required?: Required;
isDisabled?: boolean;
placeholder?: string;
_placeholder?: string;
}

export function Select({
Expand All @@ -36,7 +36,7 @@ export function Select({
required,
isDisabled = false,
children,
placeholder,
_placeholder,
...props
}: React.PropsWithChildren<SelectProps>) {
const { control } = localForm;
Expand Down Expand Up @@ -77,7 +77,7 @@ export function Select({
color="black"
border="1px"
borderColor="lightgrey"
placeholder={placeholder}
placeholder={_placeholder}
_hover={{ borderColor: 'lightgrey' }}
isDisabled={isDisabled}
{...props}
Expand Down

0 comments on commit 52dd5e8

Please # to comment.