Add the following to in native/chat/message-list-container.react.js at the begining of `ConnectedMessageListContainer`:
```
const communities = useSelector(communintyThreadSelector);
for (const community of communities) {
console.log(community.name);
}
```
and enter a chat. See, that community names are being logged to the console (I have an artificially added second community, and both this community and GENESIS get logged).