fix(Admin): disable reset password option

This commit is contained in:
Jordan Knott 2020-08-21 22:20:26 -05:00
parent 9647ee623f
commit 3c4370e68a

View File

@ -139,6 +139,7 @@ const TeamRoleManagerPopup: React.FC<TeamRoleManagerPopupProps> = ({
</MiniProfileActionItem> </MiniProfileActionItem>
)} )}
<MiniProfileActionItem <MiniProfileActionItem
disabled
onClick={() => { onClick={() => {
setTab(3); setTab(3);
}} }}
@ -584,7 +585,7 @@ const TabContent = styled.div`
border-radius: 0.5rem; border-radius: 0.5rem;
`; `;
const items = [{ name: 'Members' }, { name: 'Settings' }]; const items = [{ name: 'Members' }];
type NavItemProps = { type NavItemProps = {
active: boolean; active: boolean;