bug fixed

This commit is contained in:
nutchayut
2025-01-28 22:20:11 +07:00
parent 63ccfb45c6
commit f8301b1319
7 changed files with 16 additions and 4 deletions

View File

@@ -112,6 +112,8 @@ class _RegisterSignaturePageState extends State<RegisterSignaturePage> {
"work_address": addressJob2.text,
"image_person_with_card_url": imageEkycPath,
"signature_url": signaturePath,
"user_name": username.text,
"purpose": target,
});
Api.post(context, Api.ekyc, param).then((value) =>
{
@@ -120,7 +122,7 @@ class _RegisterSignaturePageState extends State<RegisterSignaturePage> {
setState(() {
loading = false;
}),
Utils.showAlertDialogCallback(context, "กรุณาเช็ e-mail เพื่อยืนยัน\nPlease check you e-mail and confirm", (value) {
Utils.showAlertDialogCallback(context, "กรุณาเช็ e-mail เพื่อยืนยัน และรอการตรวจสอบข้อมูลยืนยันตัวตนภายใน 48 ชั่วโมง\nPlease check your email to confirm and wait for verification of your identity within 48 hours", (value) {
Navigator.pushNamed(context, '/');
})
}