Before user log in to my app
```
await Intercom.loginUnidentifiedUser();
await Intercom.presentMessageComposer(`I can’t login blah blah`);
```
After user log in to my app
```
if (Platform.OS === ‘ios’) {
yield Intercom.setUserHash(user.intercom_user_hash_ios)
} else {
yield Intercom.setUserHash(user.intercom_user_hash_android);
}
yield Intercom.loginUserWithUserAttributes({ userId: user.id });
```
When I implemented with `setUserHash` about the end of 2023, it was transferring info without problem but now it does not transfer anymore, when the user log in to my app, the unidentified account stays with the user. Any idea why it is happening?