Ran the following code + confirmed that the community was being removed
```
const fakeCommunityID = '256|84261';
const onPressRemoveCommunity = React.useCallback(() => {
dispatch({
type: removeCommunityActionType,
payload: {
id: fakeCommunityID,
},
});
}, [dispatch]);
```