Here is my Patch statement
Patch(
'POC Submissions',
Gallery1.Selected,
{
Title: SegDropClar_1.SelectedText.Value,
SubSegment: SubSegDropClar.SelectedText.Value,
Category: CatDropClar.SelectedText.Value,
BusinessType: Concat(DropDownListSub, " ~" & BusType & ", " & LOBType & ", " & RType),
NatureOfTreaty: NatureRadio_1.SelectedText.Value,
CancellationType: CancellationRadio_1.SelectedText.Value,
Premium: If(IsBlank(FixedPremium_1.Text), PercentPremium_1.Text, FixedPremium_1.Text),
CreationDate:Today(),
Creator:DataCardValue49.Text,
Status: Patch('POC Submissions', Defaults('POC Submissions'), {Status: {Value: "BU Clarification"}})
}
)
And here is the error I am getting

I have no idea why this isn't working and I've been staring at it for about an hour. Could anyone help me out and point out what I did wrong?