Added create group functionality

This commit is contained in:
Keannu Christian Bernasol 2023-09-28 21:03:04 +08:00
parent 62cee96b94
commit debaa544bc
5 changed files with 234 additions and 11 deletions

View file

@ -255,6 +255,7 @@ export async function PatchStudentStatus(info: StudentStatusPatchType) {
})
.catch((error) => {
let error_message = ParseError(error);
console.log("Error!", error.response.data);
return [false, error_message];
});
}