From 85ae1826f51654c41dd37985247dbe214bc9330d Mon Sep 17 00:00:00 2001 From: Daniel Cojocea Date: Fri, 23 Aug 2024 15:02:01 -0400 Subject: [PATCH] Comment out additional unused features --- .../TabPanels/Account/TeamPanel.jsx | 41 ++++++++++--------- 1 file changed, 22 insertions(+), 19 deletions(-) diff --git a/Client/src/Components/TabPanels/Account/TeamPanel.jsx b/Client/src/Components/TabPanels/Account/TeamPanel.jsx index 06b0d9d0a..a0393977d 100644 --- a/Client/src/Components/TabPanels/Account/TeamPanel.jsx +++ b/Client/src/Components/TabPanels/Account/TeamPanel.jsx @@ -74,7 +74,8 @@ const TeamPanel = () => { { id: 1, name: "NAME" }, { id: 2, name: "EMAIL" }, { id: 3, name: "ROLE" }, - { id: 4, name: "ACTION" }, + // FEATURE STILL TO BE IMPLEMENTED + // { id: 4, name: "ACTION" }, ], rows: team?.map((member, idx) => { return { @@ -101,22 +102,23 @@ const TeamPanel = () => { id: idx + 2, data: member.role.includes("admin") ? "Administrator" : "Member", }, - { - // TODO - Add delete onClick - id: idx + 3, - data: ( - - - - ), - }, + // FEATURE STILL TO BE IMPLEMENTED + // { + // // TODO - Add delete onClick + // id: idx + 3, + // data: ( + // + // + // + // ), + // }, ], }; }), @@ -197,7 +199,8 @@ const TeamPanel = () => { return ( - + {/* FEATURE STILL TO BE IMPLEMENTED */} + {/* Organization name @@ -242,7 +245,7 @@ const TeamPanel = () => { /> -