diff --git a/src/pages/authentication/auth-forms/IAmSmartFormWizard.js b/src/pages/authentication/auth-forms/IAmSmartFormWizard.js
index a6bf6b9..2c6e832 100644
--- a/src/pages/authentication/auth-forms/IAmSmartFormWizard.js
+++ b/src/pages/authentication/auth-forms/IAmSmartFormWizard.js
@@ -53,6 +53,7 @@ const CustomFormWizard = (props) => {
const [checkUpload, setCheckUpload] = useState(false);
const [isLoading, setLoding] = useState(true);
+ const [isLoadingData, setLodingData] = useState(true);
const [captchaImg, setCaptchaImage] = useState("");
@@ -242,6 +243,7 @@ const CustomFormWizard = (props) => {
formik.setFieldValue("phoneCountryCode", iAmSmartData.phoneCountryCode ?? "");
formik.setFieldValue("address1", iAmSmartData.address1 ?? "");
props.setIdNo(iAmSmartData.idNo ?? "");
+ setLodingData(false)
}
}, [iAmSmartData])
@@ -447,514 +449,517 @@ const CustomFormWizard = (props) => {
}, [values])
return (
-
-
-
+
+ {/* Submit page */}
+
+
+ {isLoading ?
+ :
+
+ {checkUpload ?
+ // SUCCESS page
+
+
+
+
+
+
+
+
+
+
+ :
+ // ERROR page
+
+ {/* */}
+
+
+
+
+
+
+ }
+
+ }
+
+
+
+
);
}