Skip to content

Commit

Permalink
fix(Admin): disable reset password option
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanKnott committed Aug 22, 2020
1 parent 9647ee6 commit 3c4370e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/shared/components/Admin/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ const TeamRoleManagerPopup: React.FC<TeamRoleManagerPopupProps> = ({
</MiniProfileActionItem>
)}
<MiniProfileActionItem
disabled
onClick={() => {
setTab(3);
}}
Expand Down Expand Up @@ -584,7 +585,7 @@ const TabContent = styled.div`
border-radius: 0.5rem;
`;

const items = [{ name: 'Members' }, { name: 'Settings' }];
const items = [{ name: 'Members' }];

type NavItemProps = {
active: boolean;
Expand Down

0 comments on commit 3c4370e

Please sign in to comment.