add value : null in user
All checks were successful
Spell Check / Spell Check with Typos (push) Successful in 5s

This commit is contained in:
Kanjana 2025-04-30 15:36:13 +07:00
parent 07e5f53be2
commit 2fa50bd7de

View file

@ -126,8 +126,8 @@ type UserCreate = {
remark?: string; remark?: string;
agencyStatus?: string; agencyStatus?: string;
contactName?: string; contactName?: string | null;
contactTel?: string; contactTel?: string | null;
}; };
type UserUpdate = { type UserUpdate = {
@ -188,8 +188,8 @@ type UserUpdate = {
remark?: string; remark?: string;
agencyStatus?: string; agencyStatus?: string;
contactName?: string; contactName?: string | null;
contactTel?: string; contactTel?: string | null;
}; };
const permissionCondCompany = createPermCondition((_) => true); const permissionCondCompany = createPermCondition((_) => true);