Ran the following code + confirmed that a community was being added from this dispatched action
```
const dispatch = useDispatch();
const fakeCommunityID = '256|84261';
const onPressAddCommunity = React.useCallback(() => {
const communityInfo: CommunityInfo = {
enabledApps: {
calendar: true,
wiki: false,
tasks: true,
files: true,
},
};
dispatch({
type: addCommunityActionType,
payload: {
id: fakeCommunityID,
newCommunityInfo: communityInfo,
},
});
}, [dispatch]);
```