Hi @_sourcecod3_ ,
Is the Provider a Person type column in your SP list?
Could you please share a screenshot about the issue within your users's app?
How does the People Picker field should be like within your end users's app?
Actually, it is a normal behaviour with Person type filed of SP list in PowerApps app. When you generate an app based on a SP List which includes a Person field, the Person field would be decorated as a ComboBox as below:
If you want to find a specific user, you need to type some saech text within Person ComboBox as below:
Do you mean that your end users could select record from the ComboBox control directly without typing some search text? If it is the issue, I could not reproduce your issue on my side. As an alternative solution, please consider unlock the Person field data card, and remove the ComboBox from there, then re-add a new ComboBox control, set the Items property to following:
Choices('Leave Requests_1'.Provider)
then re-bind the ComboBox to the Update property of the Person field data card, set the Update property of the Person field data card to following:
NewComboBox.Selected
Please take a try with above solution, check if the issue is solved.
Best regards,