I am using powerapps gallery with SharePoint as the backend. I have multiselect people picker column which i am showing in gallery label. Below is the code for the same.
With(
{
wString: Concat(
ThisItem.Team_Members.DisplayName,
DisplayName & ", "
)
},
Left(
wString,
Len(wString) - 2
)
)
It was working fine for a while. However recently i noticed a weird error in app runtime. May i know what is the issue here?
