File tree Expand file tree Collapse file tree 4 files changed +3
-2
lines changed Expand file tree Collapse file tree 4 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,11 @@ import {
7
7
TextInput ,
8
8
TouchableOpacity ,
9
9
} from "react-native" ;
10
- import Hyperlink from "react-native-hyperlink" ;
11
10
import { useHeaderHeight } from "@react-navigation/elements" ;
12
11
import { useRouter , useLocalSearchParams } from "expo-router" ;
13
12
import { PinInputComponent } from "@/components/PinInputComponent" ;
14
13
import { useState } from "react" ;
15
14
import { useFacade } from "@/data/facades" ;
16
- import { CheckBox } from "@ui-kitten/components" ;
17
15
import { TermsOfService } from "@/components/TermsOfService/TermsOfService" ;
18
16
19
17
const MIN_PIN_LENGTH = 4 ;
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ export function EncodedImport({
53
53
onSuccess ( ) ;
54
54
}
55
55
} catch ( error ) {
56
+ console . error ( error ) ;
56
57
setError (
57
58
"Failed to import account. Please check your encoded key and try again." ,
58
59
) ;
Original file line number Diff line number Diff line change @@ -85,6 +85,7 @@ export function FileImport({
85
85
onSuccess ( ) ;
86
86
}
87
87
} catch ( error ) {
88
+ console . error ( error ) ;
88
89
setError (
89
90
"Failed to import account. Please check your file and try again." ,
90
91
) ;
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ export function MnemonicImport({
58
58
onSuccess ( ) ;
59
59
}
60
60
} catch ( error ) {
61
+ console . error ( error ) ;
61
62
setError (
62
63
"Failed to import account. Please check your mnemonic phrase and try again." ,
63
64
) ;
You can’t perform that action at this time.
0 commit comments