@tagustin2020
Turn on the Error-Level Formula Management option in your Advanced settings in the app.
Also, as a general principal, your Submit action button should only contain the SubmitForm function.
Everything else you want to occur after the form is submitted should be in the OnSuccess or OnFailure action of the form.
So, the OnSelect action of the button should be:
Set(varPlaySpinner, true);
SubmitForm(frmDesigner);
SubmitForm(frmApproval);
The OnSuccess action of the frmApproval should be:
Set(varRecord,frmApproval.LastSubmit);
ViewForm(frmApproval);
UpdateContext({DesignerForm: false, ApprovalForm: false });
Set(varPlaySpinner, false)
This does not account for the success or failure of the Designer form, but I am not completely clear on the double form submit and the relation to each other.
Hope that helps some.