ordering-ui-react-native 0.18.47 → 0.18.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -393,7 +393,9 @@ const SignupFormUI = (props: SignupParams) => {
|
|
|
393
393
|
vibrateApp()
|
|
394
394
|
return
|
|
395
395
|
}
|
|
396
|
-
formState.result?.result &&
|
|
396
|
+
formState.result?.result && formState.result?.result[0]?.includes("_") ?
|
|
397
|
+
showToast(ToastType.Error, t(`${formState.result?.result[0]}`, 'Phone number already used')) :
|
|
398
|
+
showToast(ToastType.Error, formState.result?.result[0])
|
|
397
399
|
formState.result?.result && vibrateApp()
|
|
398
400
|
setIsLoadingVerifyModal(false);
|
|
399
401
|
}
|