diff options
author | ankit-thanekar007 <ankit.thanekar007@gmail.com> | 2021-02-25 12:39:31 -0800 |
---|---|---|
committer | ankit-thanekar007 <ankit.thanekar007@gmail.com> | 2021-02-25 12:39:31 -0800 |
commit | 2360e774d94e271d1d9db0d5b92b801b9325535e (patch) | |
tree | a51dd5fb2d7a2d39f48d5631448ba58a4a6e693c /src/screens/onboarding/InvitationCodeVerification.tsx | |
parent | 47053e42a60151f04cb8a18ea86e4a96d03103b8 (diff) |
TMA-634-indentation and unused variables removed
Diffstat (limited to 'src/screens/onboarding/InvitationCodeVerification.tsx')
-rw-r--r-- | src/screens/onboarding/InvitationCodeVerification.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/screens/onboarding/InvitationCodeVerification.tsx b/src/screens/onboarding/InvitationCodeVerification.tsx index 903a9912..a0213530 100644 --- a/src/screens/onboarding/InvitationCodeVerification.tsx +++ b/src/screens/onboarding/InvitationCodeVerification.tsx @@ -78,7 +78,10 @@ const InvitationCodeVerification: React.FC<InvitationCodeVerificationProps> = ({ Alert.alert(ERROR_INVALID_INVITATION_CODE); } } catch (error) { - Alert.alert(ERROR_VERIFICATION_FAILED_SHORT, ERROR_DOUBLE_CHECK_CONNECTION); + Alert.alert( + ERROR_VERIFICATION_FAILED_SHORT, + ERROR_DOUBLE_CHECK_CONNECTION, + ); return { name: 'Verification error', description: error, |