Hey there, I have this Sharepioint form for a List that I customized through powerapps which has 2 screens and depending on whether a user is adding a new item to the list or viewing an existing item from the list I want to take him/her to a different screen of the app.
So I did the following for the properties of sharepoint integration
OnNew:
NewForm(SharePointForm1);
Navigate(FormScreen1)
OnEdit:
EditForm(SharePointForm1);
Navigate(Screen2)
OnView:
ViewForm(SharePointForm1);
Navigate(FormScreen2)
Seems to be working (I had it work once...) but now it seems I am stuck on a mesage "getting your data" whenever I am being taken to screen 2 (clicking on a list item).

Any idea what I could do?