diff --git a/src/controllers/OrganizationDotnetController.ts b/src/controllers/OrganizationDotnetController.ts index d83ceb4c..5566b3ba 100644 --- a/src/controllers/OrganizationDotnetController.ts +++ b/src/controllers/OrganizationDotnetController.ts @@ -389,8 +389,8 @@ export class OrganizationDotnetController extends Controller { dutyTimeEffectiveDate: profile.dutyTimeEffectiveDate, posLevel: profile.posLevel ? profile.posLevel : null, posType: profile.posType ? profile.posType : null, - profileSalary: profile.profileSalary.length > 0 ? profile.profileSalary[0] : null, - profileInsignia: profile.profileInsignias.length > 0 ? profile.profileInsignias[0] : null, + profileSalary: profile.profileSalary, + profileInsignia: profile.profileInsignias, }; return new HttpSuccess(mapProfile);