In my App I have a Gallery to replicate a "Repeating Table"..
It works like a charm, in that the Approver Submit Button updates the secondary list correctly.
It then navigates, briefly, to the "Success Screen" ..This is where it gets weird..
After a second or two, it navigates back to the EditForm which has the last Approver data in it.
Patch for the Button:
Clear(Apprcollection);
If( !IsBlank(ListItemID), ForAll(Apprcollection, If( !IsBlank( ApprovedValSel), Patch(CABApproval, Defaults(CABApproval), {ApprName: CurrentUserName, ApprComments: CommentTxt, ApprVal: ApprovedValSel, ApprDate: ApprovedDate, ApprEmail: CurrentUserEmail, MasterID: ListItemID}))));
Navigate(SuccessScreen, ScreenTransition.Fade)
My SuccessScreen is very basic - a Label and a button that takes them back to the SP list.
Nothing in the "OnVisible" ..
Thoughts?