You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Backport: COMPASS-132 Fix Intercom email can't be blank error (#534)
The below started appearing when intercom messenger was upgraded
several weeks ago. The root cause is user resource would send
`email:‘’` which fails validation on Intercom's API server. If we
instead allow email to default to undefined, no empty string is sent to
intercom’s server and validation passes. After this is merged, we’ll
also need to change models/user.js in Compass.
```
Failed to load resource: the server responded with a status of 400 (Bad
Request)
Uncaught (in promise
{"type":"error.list","request_id":"anscsvqg0eamtn7i98t0","errors":[{"cod
e":"parameter_invalid","message":"Email can't be blank"}]}
```
0 commit comments