Radio button not showing selection on mobile device till page is touched again

Radio button selection works alright on both desktop and mobile but specifically on mobile there is trouble - radio is not showing the selection till page is touched again (anywhere) - upon additional touch the radio selection is displayed correctly.
Radio has a short click code attached that changes display of two elements on page -
tried to add return value to function but no change

export function radioGroup1_click(event) {
 if ($w("#radioGroup1").value==="radman"){
    $w("#woman").hide();
    $w("#man").show();
 }
 else{
    $w("#man").hide();
    $w("#woman").show();
 }
}

Try onChange instead of onClick

No change :frowning:
same issue…

https://community.wix.com/partners/forum/technical-talk/members-sign-up-login-corvid-code-not-working?appSectionParams=%7B%22origin%22%3A%22member_comments_page%22%7D

Again, check if it is connected or “undo-ed”

Doesn’t seem related.
The onClick (or onChange) are triggered alight and my code inside is running without problem.
There is some rendering issue, seem that the click event is not propagated correctly and the GUI is not rendering the selection (till page is touched again)