Hello,
I'm working on a react web app, and if the user is logged in, the app is calling the function with the user's data
: window.Intercom('update', {
app_id: AP_ID,
name:...
email..})
and when there is no logged in user Im caling the Intercom just with th app_id:
window.Intercom('update', {
app_id: AP_ID})
but, still, the messages are sent as the logged-in user,
What can I do about it?
thanks,
Gy