Update Versi 1.5.27 #32

Merged
bagasbanuna merged 1009 commits from staging into main 2025-12-17 12:22:28 +08:00
186 changed files with 5337 additions and 956 deletions
Showing only changes of commit 6ea9d3bbb1 - Show all commits

View File

@@ -64,11 +64,6 @@ export default function Register() {
const result = await res.json();
if (res.status === 400) {
setLoading(false);
ComponentGlobal_NotifikasiPeringatan(result.message);
}
if (res.status === 200) {
localStorage.removeItem("hipmi_auth_code_id");
ComponentGlobal_NotifikasiBerhasil(result.message);
@@ -78,8 +73,15 @@ export default function Register() {
nomor: data.nomor,
});
}
if (res.status === 400) {
ComponentGlobal_NotifikasiPeringatan(result.message);
return;
}
} catch (error) {
console.log(error);
} finally {
setLoading(false);
}
}