Hi @TrulsB ,
Could you please share a bit more about your issue?
Do you create a custom form using PowerApps in your SP List?
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 consider take a try with the following workaround:
Edit your custom form (created via PowerApps) in your SP List, then set the OnNew property of the SharePointIntegration control to following:
Refresh('YourSPList'); /* <-- Add formula here */
NewForm(SharePointForm1)
Set the OnEdit property of the SharePointIntegration control to following:
Refresh('YourSPList'); /* <-- Add formula here */
EditForm(SharePointForm1)
Set the OnView property of the SharePointIntegration control to following:
Refresh('YourSPList'); /* <-- Add formula here */
ViewForm(SharePointForm1)
Please consider take a try with above solution, then re-publish your custom form app, then check if the issue is solved.
Best regards,