Compare commits

...

2 Commits

View File

@ -124,7 +124,7 @@ export const useEmployeesAllOrByProjectId = (projectId, showInactive) => {
const res = await EmployeeRepository.getAllEmployeeList(showInactive);
return res.data;
} else {
const res = await ProjectRepository.getEmployeesByProject(projectId);
const res = await EmployeeRepository.getEmployeeListByproject(projectId);
return res.data;
}
};