aboutsummaryrefslogtreecommitdiff
path: root/src/services/UserProfileService.ts
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-01-15 14:35:06 -0500
committerIvan Chen <ivan@tagg.id>2021-01-15 14:35:06 -0500
commitcc52dabaaf529763e9c1c4683ba94ed55c5671a8 (patch)
tree716705d963f0a943ae5a7b6d21ec4b314f2d6f87 /src/services/UserProfileService.ts
parentf4ff28b1094c65d0bb3dcda4045ab64cab108cd0 (diff)
updated some strings
Diffstat (limited to 'src/services/UserProfileService.ts')
-rw-r--r--src/services/UserProfileService.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/services/UserProfileService.ts b/src/services/UserProfileService.ts
index 830fbbb9..37d00659 100644
--- a/src/services/UserProfileService.ts
+++ b/src/services/UserProfileService.ts
@@ -24,7 +24,7 @@ import {
ERROR_PWD_ACCOUNT,
ERROR_SOMETHING_WENT_WRONG,
ERROR_SOMETHING_WENT_WRONG_REFRESH,
- ERROR_VERIFICATION_FAILED,
+ ERROR_VERIFICATION_FAILED_SHORT,
SUCCESS_PWD_RESET,
SUCCESS_VERIFICATION_CODE_SENT,
} from '../constants/strings';
@@ -291,7 +291,7 @@ export const verifyOtp = async (phone: string, otp: string) => {
}
}
} catch (error) {
- Alert.alert(ERROR_VERIFICATION_FAILED, ERROR_DOUBLE_CHECK_CONNECTION);
+ Alert.alert(ERROR_VERIFICATION_FAILED_SHORT, ERROR_DOUBLE_CHECK_CONNECTION);
return {
name: 'Verification error',
description: error,