Hello - I have an error that I am having trouble figuring out what I'm doing wrong. I suspect it is something missing in the syntax so thought I'd post for any help.
According to flow checker, the errors are that it expects a colon in one place, and a tab instead of a curly brace in another and finally that the column "_" doesn't exist (this one is the most confusing to me). Anyway, if anyone can assist, I'd be so grateful.
I should note that my SubmitForm(formSupportDocs) is an attachment field which I wanted to update to my SP list, but the attachments weren't going through so I added a Patch function with form.Updates function. But now the errors.
Here is the code which is the OnSelect of my Submit button:
UpdateContext({showLoading: true});
Set(
varAwardName,
lblAwardName_1.Text
);
Set(
varAwardID2,
Value(ThisItem.Award_ID)
);
SubmitForm(formSupportDocs);
Patch(CollaboratorInvite, LookUp(CollaboratorInvite, Email=varPSUEmail && Nominator_UserID=varNominatorUserID && Nominee_UserID=Concatenate(varNomineeUserID,"@psu.edu")),
{
UploadComplete:"Yes",
},
formSupportDocs.Updates
);
UpdateContext({showLoading: false});
If(
IsEmpty(Errors(CollaboratorInvite)),
Notify(
"You have Successfully Submitted this Supporting Document. It will be added to the Nomination Packet.",
NotificationType.Success
);
Navigate(Home),
Notify(
First(Errors(CollaboratorInvite)).Message,
NotificationType.Error
)
);
Concurrent(
Refresh(CollaboratorInvite),
Refresh(SubmittedNominations),
ResetForm(formSupportDocs),
Set(varPopUpConfirmation, false)
);
The interface:

The datasource for my form is a SP list and the items property is a formula to lookup a record in the list that matches on three fields:

Datasource:

Does anyone see any obvious syntax errors that I am too tired at the moment to notice?
Thank you for your help in advance!
@kky1