feat: add contact name and contact tel fields to user types and forms
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 8s

This commit is contained in:
puriphatt 2025-04-17 14:25:46 +07:00
parent e189b9a880
commit 145784ee40
7 changed files with 116 additions and 246 deletions

View file

@ -57,7 +57,8 @@ export type User = {
citizenIssue?: Date | null;
citizenId: string;
branch: Branch[];
contactName?: string;
contactTel?: string;
remark?: string;
agencyStatus?: AgencyStatus;
};
@ -108,7 +109,8 @@ export type UserCreate = {
citizenExpire?: Date | null;
citizenIssue?: Date | null;
citizenId: string;
contactName?: string;
contactTel?: string;
remark?: string;
agencyStatus?: AgencyStatus | string;
};