Skip to main content

I use @intercom/intercom-react-native. User is registered with Intercom.registerUnidentifiedUser() and I use Intercom.updateUser({ Tag: 'someTag' })

but when I check user in Intercom I see Tag has not been set.

It looks like the Tag attribute is a custom attribute so after changing to

Intercom.updateUser({

customAttributes: {

Tag: 'someTag',

},

})

issue was solved


Reply