Remove unused makeGetGroup

This commit is contained in:
Alex Gleason 2023-06-26 11:09:44 -05:00
parent a375159444
commit df4975c688
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -328,16 +328,3 @@ export const makeGetStatusIds = () => createSelector([
return !shouldFilter(status, columnSettings); return !shouldFilter(status, columnSettings);
}); });
}); });
export const makeGetGroup = () => {
return createSelector([
(state: RootState, id: string) => state.groups.items.get(id),
(state: RootState, id: string) => state.group_relationships.get(id),
], (base, relationship) => {
if (!base) return null;
return base.withMutations(map => {
if (relationship) map.set('relationship', relationship);
});
});
};