Bluesky app fork with some witchin' additions 💫

Quick fix to ensure disable 2fa dialog adjusts to keyboard (#3658)

authored by

Paul Frazee and committed by
GitHub
30c2c051 710e9130

+2 -1
+2 -1
src/view/screens/Settings/DisableEmail2FADialog.tsx
··· 144 144 </TextField.LabelText> 145 145 <TextField.Root> 146 146 <TextField.Icon icon={Lock} /> 147 - <TextField.Input 147 + <Dialog.Input 148 148 testID="confirmationCode" 149 149 label={_(msg`Confirmation code`)} 150 150 autoCapitalize="none" ··· 153 153 autoComplete="off" 154 154 value={confirmationCode} 155 155 onChangeText={setConfirmationCode} 156 + onSubmitEditing={onConfirmDisable} 156 157 editable={!isProcessing} 157 158 /> 158 159 </TextField.Root>