Fix more code style discrepancies
parent
542d95c2bc
commit
3b210e093a
|
@ -67,7 +67,8 @@ const deleteFromContexts = (immutableState, ids) => immutableState.withMutations
|
||||||
});
|
});
|
||||||
|
|
||||||
const filterContexts = (state, relationship, statuses) => {
|
const filterContexts = (state, relationship, statuses) => {
|
||||||
const ownedStatusIds = statuses.filter(status => status.get('account') === relationship.id)
|
const ownedStatusIds = statuses
|
||||||
|
.filter(status => status.get('account') === relationship.id)
|
||||||
.map(status => status.get('id'));
|
.map(status => status.get('id'));
|
||||||
|
|
||||||
return deleteFromContexts(state, ownedStatusIds);
|
return deleteFromContexts(state, ownedStatusIds);
|
||||||
|
|
Loading…
Reference in New Issue