Skip to content

Commit bffff13

Browse files
authored
fix(Android): confirm password hidden behind keyboard (#6626)
1 parent 13950a0 commit bffff13

File tree

1 file changed

+1
-2
lines changed
  • app/views/ProfileView/components/ConfirmEmailChangeActionSheetContent

1 file changed

+1
-2
lines changed

app/views/ProfileView/components/ConfirmEmailChangeActionSheetContent/index.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { StyleSheet, Text, View } from 'react-native';
33
import { useForm } from 'react-hook-form';
44

55
import I18n from '../../../../i18n';
6-
import { isIOS } from '../../../../lib/methods/helpers';
76
import { useTheme } from '../../../../theme';
87
import sharedStyles from '../../../Styles';
98
import Button from '../../../../containers/Button';
@@ -105,7 +104,7 @@ const ConfirmEmailChangeActionSheetContent = ({
105104
autoComplete='password'
106105
testID='profile-view-enter-password-sheet-input'
107106
secureTextEntry
108-
bottomSheet={isIOS}
107+
bottomSheet={true}
109108
containerStyle={styles.inputContainer}
110109
error={errors.password?.message}
111110
/>

0 commit comments

Comments
 (0)