fix: typo

This commit is contained in:
Methapon Metanipat 2024-10-30 09:04:55 +07:00
parent c43a909fcc
commit ab08036962
3 changed files with 5 additions and 5 deletions

View file

@ -193,7 +193,7 @@ export type EmployeeWork = {
createdBy: string;
workEndDate: Date;
workPermitExpireDate: Date;
workPermitIssuDate: Date;
workPermitIssueDate: Date;
workPermitNo: string;
workplace: string;
jobType: string;
@ -207,7 +207,7 @@ export type EmployeeWork = {
export type EmployeeWorkCreate = {
workEndDate?: Date | null;
workPermitExpireDate?: Date | null;
workPermitIssuDate?: Date | null;
workPermitIssueDate?: Date | null;
workPermitNo?: string;
workplace?: string;
jobType?: string;