Skip to content

Commit 9afcc1c

Browse files
committed
linting
1 parent bbd56e8 commit 9afcc1c

File tree

4 files changed

+3
-2
lines changed

4 files changed

+3
-2
lines changed

packages/mobile-app/app/onboarding/create-pin.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,11 @@ import {
77
TextInput,
88
TouchableOpacity,
99
} from "react-native";
10-
import Hyperlink from "react-native-hyperlink";
1110
import { useHeaderHeight } from "@react-navigation/elements";
1211
import { useRouter, useLocalSearchParams } from "expo-router";
1312
import { PinInputComponent } from "@/components/PinInputComponent";
1413
import { useState } from "react";
1514
import { useFacade } from "@/data/facades";
16-
import { CheckBox } from "@ui-kitten/components";
1715
import { TermsOfService } from "@/components/TermsOfService/TermsOfService";
1816

1917
const MIN_PIN_LENGTH = 4;

packages/mobile-app/components/EncodedImport/EncodedImport.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ export function EncodedImport({
5353
onSuccess();
5454
}
5555
} catch (error) {
56+
console.error(error);
5657
setError(
5758
"Failed to import account. Please check your encoded key and try again.",
5859
);

packages/mobile-app/components/FileImport/FileImport.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ export function FileImport({
8585
onSuccess();
8686
}
8787
} catch (error) {
88+
console.error(error);
8889
setError(
8990
"Failed to import account. Please check your file and try again.",
9091
);

packages/mobile-app/components/MnemonicImport/MnemonicImport.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ export function MnemonicImport({
5858
onSuccess();
5959
}
6060
} catch (error) {
61+
console.error(error);
6162
setError(
6263
"Failed to import account. Please check your mnemonic phrase and try again.",
6364
);

0 commit comments

Comments
 (0)