about summary refs log tree commit diff
path: root/src/view/com/modals/DeleteAccount.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-03-14 13:03:43 -0500
committerPaul Frazee <pfrazee@gmail.com>2023-03-14 13:03:43 -0500
commitacf0f80de2a7a96ad8ee58dbf6aa8cb59859c9e8 (patch)
treeea84f4665976b847ea7d32190324f47c1e0b414f /src/view/com/modals/DeleteAccount.tsx
parentd55780f5c333208eaac1d5240929959b131e8787 (diff)
downloadvoidsky-acf0f80de2a7a96ad8ee58dbf6aa8cb59859c9e8.tar.zst
Rework account creation and login views
Diffstat (limited to 'src/view/com/modals/DeleteAccount.tsx')
-rw-r--r--src/view/com/modals/DeleteAccount.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/view/com/modals/DeleteAccount.tsx b/src/view/com/modals/DeleteAccount.tsx
index 62fa9f386..23cd9eb82 100644
--- a/src/view/com/modals/DeleteAccount.tsx
+++ b/src/view/com/modals/DeleteAccount.tsx
@@ -5,7 +5,7 @@ import {
   TouchableOpacity,
   View,
 } from 'react-native'
-import {BottomSheetTextInput} from '@gorhom/bottom-sheet'
+import {TextInput} from './util'
 import LinearGradient from 'react-native-linear-gradient'
 import * as Toast from '../util/Toast'
 import {Text} from '../util/text/Text'
@@ -116,7 +116,7 @@ export function Component({}: {}) {
               Check your inbox for an email with the confirmation code to enter
               below:
             </Text>
-            <BottomSheetTextInput
+            <TextInput
               style={[styles.textInput, pal.borderDark, pal.text, styles.mb20]}
               placeholder="Confirmation code"
               placeholderTextColor={pal.textLight.color}
@@ -127,7 +127,7 @@ export function Component({}: {}) {
             <Text type="lg" style={styles.description}>
               Please enter your password as well:
             </Text>
-            <BottomSheetTextInput
+            <TextInput
               style={[styles.textInput, pal.borderDark, pal.text]}
               placeholder="Password"
               placeholderTextColor={pal.textLight.color}