Hello everyone,
I have an app that on first screen i have a Card that is retrieving the users from a people picker SharePoint column from office365 and automatically display the user who is opening the app.
Furthermore, i have 3 more cards that retrieving information based on the user selection in order to bring Department, OfficeLocation and Company Name.
The cards are working on browser but when i use power apps application i get the following error:

The interesting thing is that on android devices despite the error, the cards are fetching the selected information but on ios it doesn't work.
I have also downloaded power apps on my pc and even though i get the error the values are being fetched as well.
If on ios was working as well, i was thinking to add on app settings "On error" an if is blank statement in order to not show the error but now i am confused.
Anyone has an idea firstly what might cause this error and secondly why on ios it ain't working?
Full Name Card:
Default: {
DisplayName:Office365Users.UserProfileV2(User().Email).displayName,
Claims:"i:0#.f|membership|" & Lower(User().Email),
Department:Office365Users.UserProfileV2(User().Email).department,
Email:Office365Users.UserProfileV2(User().Email).mail,
OfficeLocation:Office365Users.UserProfileV2(User().Email).officeLocation
}
DefaultSelecteditems:
{
DisplayName:Office365Users.UserProfile(User().Email).DisplayName,
Claims:"i:0#.f|membership|" & Lower(User().Email),
Department:Office365Users.UserProfile(User().Email).Department,
Email:Office365Users.UserProfile(User().Email).Mail,
OfficeLocation:Office365Users.UserProfile(User().Email).OfficeLocation
}
Department Card:
Default: Office365Users.UserProfileV2(FullName.Selected.Email).department
Thanks in advance for your help.