Hi @MikeRooker ,
Have you published your custom form app to your SP List properly?
Based on the issue that you mentioned, I have made a test on my side, and don't have the issue that you mentioned. Please make sure you have published your custom form app to your SP List properly.
Also please consider clear cache of your browser, then sign in your SharePoint List again, then check if the issue is solved. Edit your custom form app, add the following formula within the OnNew property of SharePointIntegration control:
Refresh('Your SP List'); // Add this formula
Set(SharePointFormMode, "CreateForm");
NewForm(CreateItemForm);
Navigate(CreateScreen, ScreenTransition.None)
set the OnEdit property of SharePointIntegration control:
Refresh('Your SP List'); // Add this formula
Set(SharePointFormMode, "EditForm"); EditForm(EditItemForm); Navigate(EditScreen, ScreenTransition.None)
Set the OnView property of SharePointIntegration control to following:
Refresh('Your SP List'); // Add this formula
Set(SharePointFormMode, "ShowForm"); ViewForm(ShowItemForm); Navigate(ShowScreen, ScreenTransition.None)
then save your canvas app, and re-publish it to your SharePoint List, check if the issue is solved.
Best regards,