$()

in source/static-assets/js/main.js [150:158]


    $('.user-attribute-radio').each(function (attribute, index) {
      for (const property in userAttributes) {
        if ($(this).attr('name') === property) {
          if (userAttributes[property].indexOf($(this).val()) > -1) {
            $(this).prop('checked', true)
          }
        }
      }
    })