diff --git a/src/libs/actions/Policy.js b/src/libs/actions/Policy.js index 7c9660333899..4965508c8b16 100644 --- a/src/libs/actions/Policy.js +++ b/src/libs/actions/Policy.js @@ -114,9 +114,9 @@ function removeMembers(members, policyID) { // Optimistically remove the members from the policy Onyx.set(key, policy); - // Make the API call to merge the login into the policy + // Make the API call to remove a login from the policy API.Policy_Employees_Remove({ - emailList: members, + emailList: members.join(','), policyID, }) .then((data) => {