I am trying to update and patch data in two different SP Lists once a Radio Button is selected inside the gallery. But whenever I click the Radio button the data is patching perfectly

until the Radio Button Resets Itself.

the Onselect property I use is
Patch(
'Approval-likes',
Defaults('Approval-likes'),
{
Title: Title6_1.Text,
idea: Subtitle6_1.Text,
'idea description': Body1_1.Text,
STATUS: Radio1.SelectedText,
uniqueID: ThisItem.uniqueID
}
);
Patch(
Approval,
First(
Filter(
Approval,
uniqueID = uniqueIDLabel.Text
)
),
{'Is New': 0}
)