This commit is contained in:
mateusBrandao 2024-05-03 19:47:23 -03:00 committed by GitHub
commit 6439fbe267
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 0 deletions

View File

@ -121,6 +121,15 @@ const RoomMembersView = (): React.ReactElement => {
return () => subscription?.unsubscribe();
}, []);
useEffect(() => {
const unsubscribe = navigation.addListener('focus', () => {
const { allUsers } = state;
fetchMembers(allUsers);
});
return unsubscribe;
}, [navigation]);
useEffect(() => {
const fetchRoles = () => {
if (isGroupChat(state.room)) {