I have a dropdown -

with a button below to patch the field -
Patch('Intake', ThisItem, {'Action Owner': {Value :review_status_dropdown.Selected.Value}});
I am trying to add another line
If(ThisItem.'Action Owner'.Value = "Closed", Patch('Intake', ThisItem, {'Status_two': {Value : "Complete"}}),"");
Action Owner updates fine in my SP list.
However my status_two isnt being updated.
where am I going wrong?