From 8b825007a751fb60ce3adb240ae344eb99ef9e57 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Mon, 26 May 2025 03:09:29 -0400 Subject: [PATCH] Removed useless info --- src/components/BotsManagement.tsx | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/components/BotsManagement.tsx b/src/components/BotsManagement.tsx index bd742fc..d5e8f66 100644 --- a/src/components/BotsManagement.tsx +++ b/src/components/BotsManagement.tsx @@ -266,15 +266,11 @@ const BotsManagement: React.FC = ({ token, logoutUser }) => Client ID - Assigned Discord ID (Name) {bots.length > 0 ? ( bots.map((botClientId) => { - const assignedSystem = systems.find(sys => sys.avail_on_nodes.includes(botClientId)); - const assignedDiscordBot = discordIds.find(did => did.name === assignedSystem?.name); - return ( @@ -282,9 +278,6 @@ const BotsManagement: React.FC = ({ token, logoutUser }) => {botClientId} - - {assignedSystem ? `${assignedSystem.name} (System)` : "N/A or requires different mapping"} - ); })