about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2024-02-06 09:28:56 -0800
committerPaul Frazee <pfrazee@gmail.com>2024-02-06 09:28:56 -0800
commit0604e5b84e23828ad33da2bcbed36ad65fb762bb (patch)
tree21244cb4da4462e89983d5d637f429b8b1d1a5ae
parent57559ab6cac92ef10ced7f183f961b49d5ce1a62 (diff)
downloadvoidsky-0604e5b84e23828ad33da2bcbed36ad65fb762bb.tar.zst
Fix lint
-rw-r--r--src/view/com/auth/create/Step2.tsx5
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 {