diff --git a/core/components/atoms/_simple-select/simple-select.tsx b/core/components/atoms/_simple-select/simple-select.tsx index 4b3566986..597f75d5c 100644 --- a/core/components/atoms/_simple-select/simple-select.tsx +++ b/core/components/atoms/_simple-select/simple-select.tsx @@ -8,11 +8,6 @@ import { StyledInput } from "../_styled-input"; import Icon from "../icon"; import { ISelectOptions } from "../select/interfaces"; -const selectOpacity = { - default: 1, - disabled: 0.5 -}; - const PLACEHOLDER_VALUE = "0"; const valueIsUndefined = (value) => value === undefined || value === null; @@ -69,10 +64,15 @@ const SimpleSelect = ({ options, ...props }: ISimpleSelectProps) => { return ( - + {(context) => ( - + {/* First option will be selected if there is no value passed as a prop */} {props.placeholder && (