fix: missing type
All checks were successful
Spell Check / Spell Check with Typos (push) Successful in 4s

This commit is contained in:
Methapon2001 2025-07-16 11:38:11 +07:00
parent b7a13b2d7a
commit 46ba857e28

View file

@ -132,6 +132,7 @@ type UserCreate = {
provinceText?: string | null;
provinceTextEN?: string | null;
provinceId?: string | null;
zipCodeText?: string | null;
selectedImage?: string;
@ -203,6 +204,7 @@ type UserUpdate = {
provinceText?: string | null;
provinceTextEN?: string | null;
provinceId?: string | null;
zipCodeText?: string | null;
branchId?: string | string[];