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