diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-02-06 09:28:56 -0800 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2024-02-06 09:28:56 -0800 |
commit | 0604e5b84e23828ad33da2bcbed36ad65fb762bb (patch) | |
tree | 21244cb4da4462e89983d5d637f429b8b1d1a5ae /src | |
parent | 57559ab6cac92ef10ced7f183f961b49d5ce1a62 (diff) | |
download | voidsky-0604e5b84e23828ad33da2bcbed36ad65fb762bb.tar.zst |
Fix lint
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/auth/create/Step2.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/view/com/auth/create/Step2.tsx b/src/view/com/auth/create/Step2.tsx index c1648eccc..2e16b13bb 100644 --- a/src/view/com/auth/create/Step2.tsx +++ b/src/view/com/auth/create/Step2.tsx @@ -42,7 +42,10 @@ 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 { |