From 0604e5b84e23828ad33da2bcbed36ad65fb762bb Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 6 Feb 2024 09:28:56 -0800 Subject: [PATCH] Fix lint --- src/view/com/auth/create/Step2.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/view/com/auth/create/Step2.tsx b/src/view/com/auth/create/Step2.tsx index c1648ecc..2e16b13b 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 {