Using intercom’s messenger-js-sdk
I am currently passing custom attributes during Intercom instantiation like so
```
Intercom({
app_id: appId,
user_id: userId,
name: userName,
email: email,
created_at: createdAt,
tenant_id: tenantId,
tenant_name: tenantName,
tenant_role: tenantRole,
app_environment: appEnvironment,
});
```
The custom attributes are already set within Intercom itself as shown in the above attached image.
However, when testing it out the custom attribute is not being populated.
I’ve checked the user data payload sent during the ping http request, all data is supplied appropriately.
Any ideas what could be the problem ?