Skip to content

Commit 540b2d9

Browse files
committed
chore: cleanup
1 parent e7fa07d commit 540b2d9

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

packages/ui-components/src/lib/inputs/InputSelect/InputSelect.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,6 @@ export const InputSelect: FC<InputSelectProps> = ({
6363

6464
const [isAutoFilling, setAutoFilling] = useState<boolean>(false);
6565

66-
const lowercaseString: (value: string | number) => string = value => `${value}`.toLowerCase();
67-
6866
const optionMatchesValue = (option: any, value: any) => {
6967
// Note: Sometimes we pass in the value as true value and sometimes value is the selected option.
7068
return optionValueKey ? _get(option, optionValueKey) === value || _isEqual(option, value) : _isEqual(option, value);

0 commit comments

Comments
 (0)