MFA-widget tenant name

Hi Lily.

The friendly name is set and is used when enrolling using the Guardian app. However when using Google Authenticator or Lastpass when enrolling the tenant id is used and later displayed in that authenticator app.

By changing the following I’m able to get it to show as the expected name and it seems to work, but could it have any negative side effects when not using the “userData.tenant” value here or is it just used for display purposes?

userData: {
      userId: "{{ userData.userId }}",
      email: "{{ userData.email }}",
      friendlyUserId: "{{ userData.friendlyUserId }}",
      tenant: "{{ userData.tenantFriendlyName }}", // WAS tenant: "{{ userData.tenant }}"
      {% if userData.tenantFriendlyName %}
      tenantFriendlyName: "{{ userData.tenantFriendlyName }}"
      {% endif %}
    },