Skip to content

Commit

Permalink
Removing duplicate line in Native Select
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-cedrone-cengage committed Dec 2, 2024
1 parent 6838de1 commit c6a9c0d
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,6 @@ function borderColors(props) {
if (props.disabled) {
return transparentize(0.85, props.theme.colors.neutral100);
}
if (props.disabled) {
return transparentize(0.85, props.theme.colors.neutral100);
}
return transparentize(0.5, props.theme.colors.neutral100);
}
if (props.hasError) {
Expand Down Expand Up @@ -230,4 +227,4 @@ export const NativeSelect = React.forwardRef<HTMLDivElement, NativeSelectProps>(
return nativeSelect;
}
}
);
);

0 comments on commit c6a9c0d

Please sign in to comment.