I added a pre-approved button on the app so that after it goes from pending it go to pre-approved so an administrator can approve the day off. I was able to add the button and is going from pending to pre-approved but it still assigned to the manager that was chosen by the employee. I need it to get assigned to a specific person that is in charge of having final approval on all requests. Below is the code that was used for the the pending button that moves it to pre-approved.
Concurrent(
Set(_submittingRequest, true),
Set(_managerApprove, true));
Patch(Leave, LookUp(Leave, LeaveID = GalleryRequests.Selected.LeaveID), {Status: "Pre-Approved"});
Set(_submittingRequest, false);
Navigate(ManagerChangeRequestScreen, None);
Im new at this so my bet is that somewhere here i can have it reassigned to another email