feature: add user project count to Admin component

This commit is contained in:
Jordan Knott
2020-07-17 19:40:05 -05:00
parent ccaa97e2bb
commit 68fa7aef94
23 changed files with 1140 additions and 140 deletions

View File

@ -159,8 +159,8 @@ export const RemoveMemberButton = styled(Button)`
`;
type TeamRoleManagerPopupProps = {
currentUserID: string;
subject: TaskUser;
members: Array<TaskUser>;
subject: User;
members: Array<User>;
warning?: string | null;
canChangeRole: boolean;
onChangeRole: (roleCode: RoleCode) => void;