From e02a29f05319fb7ca34940c54c39f8d47ec398f2 Mon Sep 17 00:00:00 2001 From: Kanjana Date: Fri, 30 May 2025 13:05:33 +0700 Subject: [PATCH] fix : add type null in otherNationality --- src/controllers/03-employee-passport-controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/03-employee-passport-controller.ts b/src/controllers/03-employee-passport-controller.ts index 12e0b01..6af121c 100644 --- a/src/controllers/03-employee-passport-controller.ts +++ b/src/controllers/03-employee-passport-controller.ts @@ -43,7 +43,7 @@ type EmployeePassportPayload = { workerStatus: string; nationality: string; - otherNationality?: string; + otherNationality?: string | null; namePrefix?: string | null; firstName: string; firstNameEN: string;