diff options
Diffstat (limited to 'src/screens/onboarding/Verification.tsx')
-rw-r--r-- | src/screens/onboarding/Verification.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/screens/onboarding/Verification.tsx b/src/screens/onboarding/Verification.tsx index 1c456e01..77a43a6d 100644 --- a/src/screens/onboarding/Verification.tsx +++ b/src/screens/onboarding/Verification.tsx @@ -90,7 +90,10 @@ const Verification: React.FC<VerificationProps> = ({route, navigation}) => { let sendOtpStatusCode = sendOtpResponse.status; if (sendOtpStatusCode === 200) { setValue(''); - Alert.alert('New verification code sent!', 'Check your email for your code.'); + Alert.alert( + 'New verification code sent!', + 'Check your email for your code.', + ); } else { Alert.alert('Something went wrong!'); } |