Hi The powerapp is connecting 2 share point list as the data source.
The first list data is used for main screen.
There is one Field I want it only visible when the user is Admin.
The other list is the Admin list.
User is Person/group column, Person is Text with mail address.

I set App OnStart
Set(varUserEmail, User().Email);
If(CountRows(Filter('AppAdmins',varUserEmail in Person)) > 0,Set(varUserAssignee,true),Set(varUserAssignee,false));
However there is warning message as below:

I would like to confirm how to resolve it.