Have been following instructions on how to create an app from scratch. I've created a screen with an Edit form in it which will be used to submit a new item to a SharePoint List. From the home screen, there is a button which takes you there OnSelect:
NewForm(CreateNewClaimForm);Navigate(CreateNewClaim, ScreenTransition.Fade)
Right now, I've just set one field ("Employee ID") as required. To submit the form, I've created a button with the following OnSelect:
SubmitForm(CreateNewClaimForm)
It was working fine initially. However, after adding some default values for some fields (e.g. current user's Manager, user email, etc), the form now appears to reset the input field of the required field before submitting when i click the submit button, throwing an error.


I can't find any information on this on other forum posts. I'm working inside of PowerApps studio where it's a little tricky to debug exactly what is going on behind the scenes. Am I missing something here?