Merge branch 'develop' into devTee

This commit is contained in:
setthawutttty 2025-07-07 10:38:21 +07:00
commit ee4428aac2
3 changed files with 4 additions and 1 deletions

View file

@ -313,7 +313,7 @@ async function getTable() {
res.data.result.map((data: any) => {
const rowData = {
personalId: data.personalId,
avatar: avatar,
avatar: data.avatar ? data.avatar : avatar,
name: data.fullName,
fullName: data.fullName + " " + data.idCard,
idCard: data.idCard,

View file

@ -224,6 +224,7 @@ interface Assign {
}
interface DataProfile {
avatar?: string;
child1: string | null;
child1ShortName: string | null;
child2: string | null;