Commit 50464be5 by Giang Tran

edit moment

parent 3f185348
...@@ -33,12 +33,14 @@ const ConfirmChangeSmartOTP = (props) => { ...@@ -33,12 +33,14 @@ const ConfirmChangeSmartOTP = (props) => {
const onCheckPINSmartOTPPin = async () => { const onCheckPINSmartOTPPin = async () => {
let pinCode = `${firstNumber}${secondsNumber}${thirdNumber}${fourNumber}`; let pinCode = `${firstNumber}${secondsNumber}${thirdNumber}${fourNumber}`;
props.showLoading();
const res = await updateOTPApiSmart({ const res = await updateOTPApiSmart({
platform: Platform.OS, platform: Platform.OS,
password: props.route.params.pre_otp, password: props.route.params.pre_otp,
password_confirmation: pinCode, password_confirmation: pinCode,
old_password: props.route.params.old_password, old_password: props.route.params.old_password,
}); });
props.hideLoading();
if (res.data.code == 200) { if (res.data.code == 200) {
showAlert(TYPE.SUCCESS, I18n.t('Notification'), res.data.message); showAlert(TYPE.SUCCESS, I18n.t('Notification'), res.data.message);
navigation.reset({ navigation.reset({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment