Remove unused makeGetGroup

environments/review-group-hook-n3r89k/deployments/3533
Alex Gleason 2023-06-26 11:09:44 -05:00
rodzic a375159444
commit df4975c688
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
1 zmienionych plików z 0 dodań i 13 usunięć

Wyświetl plik

@ -328,16 +328,3 @@ export const makeGetStatusIds = () => createSelector([
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);
});
});
};