diff options
author | RonyVidaur <rony.vidaur@gmail.com> | 2024-02-03 22:27:50 -0600 |
---|---|---|
committer | RonyVidaur <rony.vidaur@gmail.com> | 2024-02-03 22:27:50 -0600 |
commit | 1412f9d95cfa5de31a80f279095618f84982705e (patch) | |
tree | 5eaa99823b6b39f62adc85680f874f89e4765fb5 /src | |
parent | 323b5bdfda426ac2f2366ff1f36031092f843e75 (diff) | |
download | voidsky-1412f9d95cfa5de31a80f279095618f84982705e.tar.zst |
format
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/auth/create/Step2.tsx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/view/com/auth/create/Step2.tsx b/src/view/com/auth/create/Step2.tsx index 4e6512c9b..c1648eccc 100644 --- a/src/view/com/auth/create/Step2.tsx +++ b/src/view/com/auth/create/Step2.tsx @@ -42,10 +42,7 @@ export function Step2({ const {isMobile} = useWebMediaQueries() const onPressRequest = React.useCallback(() => { - const phoneNumber = parsePhoneNumber( - uiState.verificationPhone, - uiState.phoneCountry, - ); + const phoneNumber = parsePhoneNumber(uiState.verificationPhone, uiState.phoneCountry) if (phoneNumber && phoneNumber.isValid()) { requestVerificationCode({uiState, uiDispatch, _}) } else { |