From 3c4370e68a3b79458040f69137738f0aabaf0277 Mon Sep 17 00:00:00 2001 From: Jordan Knott Date: Fri, 21 Aug 2020 22:20:26 -0500 Subject: [PATCH] fix(Admin): disable reset password option --- frontend/src/shared/components/Admin/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/shared/components/Admin/index.tsx b/frontend/src/shared/components/Admin/index.tsx index 45552bc..e896acf 100644 --- a/frontend/src/shared/components/Admin/index.tsx +++ b/frontend/src/shared/components/Admin/index.tsx @@ -139,6 +139,7 @@ const TeamRoleManagerPopup: React.FC = ({ )} { setTab(3); }} @@ -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;