Hello community,
I have a problem when trying to Patch a SharePoint Person/Group column based on LookUp from another SharePoint List.
LookUp Sharepoint List:

Basically the users of the application are selecting in a ComboBox the 'HUB' and based on that selection the Patch function should write in the second SharePoint which is the data base of the application in another Person/Group the responsible Manager of selected HUB.
Formula used:
Patch(
'SSH Task Management',
Defaults('SSH Task Management'),
{
Title: Combo_Cluster.Selected.Result,
OpCo: Combo_OpCo.Selected.Result,
Brewery: Combo_Brewery.Selected.Result,
Requester: Combo_Requester.Selected,
ContactPerson: Combo_Contact.Selected,
Reason: Combo_Reason.Selected.Result,
TypeOfRequest: Combo_TypeReq.Selected.Result,
AreaOfSupport: Combo_AreaSupp.Selected.Result,
Hub: Combo_Hub.Selected.Result,
HubManager: {
'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims: "i:0#.f|membership|" & LookUp('HUB Managers', HUB = Combo_Hub.Selected.Result, Manager.Claims),
Department: LookUp('HUB Managers', HUB = Combo_Hub.Selected.Result, Manager.Department),
DisplayName: LookUp('HUB Managers', HUB = Combo_Hub.Selected.Result, Manager.DisplayName),
Email: LookUp('HUB Managers', HUB = Combo_Hub.Selected.Result, Manager.Email),
JobTitle: LookUp('HUB Managers', HUB = Combo_Hub.Selected.Result, Manager.JobTitle),
Picture: LookUp('HUB Managers', HUB = Combo_Hub.Selected.Result, Manager.Picture)
},
Department: Combo_Department.Selected.Result,
LossesType: Combo_Losses.Selected,
ExpectedStartDate: DatePicker_StartDate.SelectedDate,
ExpectedEndDate: DatePicker_EndDate.SelectedDate,
SupportType: Combo_SuppType.Selected,
ShortDescription: TextInp_ShortDesc.Text,
FullDescription: TextInp_Desc.Text,
RelatedKPI: Combo_RelatedKPI.Selected.Result,
YTDKPIValue: TextInp_ytdKPI.Text,
KPITarget: TextInp_KPItarget.Text,
UoM: TextInp_UoM.Text
}, Attachments_Form.Updates
)
The 'HubManager' part in the formula is not functioning properly and when Patch button is pressed I'm receiving error:

If I'm removing the 'HubManager' part, the rest of the fields are patching accordingly without any error.
At some point I managed to get it to work, but for some unknown reasons and without modifying anything (not with the same formula), after several days it stopped working.
Any help would be greatly appreciated.