Skip to content

Commit

Permalink
chore: fix PR change suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
timoheddes committed Aug 24, 2023
1 parent 447a23f commit d07b120
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions packages/libs/react-ui/src/components/Select/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export interface ISelectProps
onChange: React.ChangeEventHandler<HTMLSelectElement>;
ref?: React.ForwardedRef<HTMLSelectElement>;
ariaLabel: string;
variant?: keyof typeof selectVariants;
variant?: keyof typeof selectVariants;
}

export const Select: FC<ISelectProps> = forwardRef<
Expand All @@ -45,11 +45,9 @@ export const Select: FC<ISelectProps> = forwardRef<
) {
return (
<div
className={classNames(
containerClass,
selectVariants[variant],
{ containerClassDisabled: disabled }
)}
className={classNames(containerClass, selectVariants[variant], {
[containerClassDisabled]: disabled,
})}
data-testid="kda-select"
>
<label>
Expand Down

0 comments on commit d07b120

Please sign in to comment.