Skip to content

Commit c927193

Browse files
authored
fix: text input hide behind keyboard in create discussion (#6662)
1 parent 3c36fb6 commit c927193

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

app/containers/UIKit/MultiSelect/MultiSelectContent.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import styles from './styles';
1010
import { useTheme } from '../../../theme';
1111
import { IItemData } from '.';
1212
import { debounce } from '../../../lib/methods/helpers/debounce';
13-
import { isIOS } from '../../../lib/methods/helpers';
1413
import { useActionSheet } from '../../ActionSheet';
1514

1615
interface IMultiSelectContentProps {
@@ -73,7 +72,7 @@ export const MultiSelectContent = React.memo(
7372
onChangeText={handleSearch}
7473
placeholder={I18n.t('Search')}
7574
inputStyle={{ backgroundColor: colors.surfaceLight }}
76-
bottomSheet={isIOS}
75+
bottomSheet={true}
7776
onSubmitEditing={() => {
7877
setTimeout(() => {
7978
hideActionSheet();

0 commit comments

Comments
 (0)