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"} - ); })