diff --git a/src/components/Dropdown/index.tsx b/src/components/Dropdown/index.tsx index b6cf9d2..9c6a599 100644 --- a/src/components/Dropdown/index.tsx +++ b/src/components/Dropdown/index.tsx @@ -181,12 +181,8 @@ const DropdownComponent: ( if (onBlur) { onBlur(); } - - if (keyboardHeight > 0) { - return Keyboard.dismiss(); - } } - }, [disable, keyboardHeight, onBlur]); + }, [disable, onBlur]); const font = useCallback(() => { if (fontFamily) { diff --git a/src/components/MultiSelect/index.tsx b/src/components/MultiSelect/index.tsx index 3b1bcf6..f19c8e9 100644 --- a/src/components/MultiSelect/index.tsx +++ b/src/components/MultiSelect/index.tsx @@ -181,10 +181,6 @@ const MultiSelectComponent: ( if (onBlur) { onBlur(); } - - if (keyboardHeight > 0) { - return Keyboard.dismiss(); - } } };