From 418766e3d0369054404d822420e44ac5b1702fb0 Mon Sep 17 00:00:00 2001 From: Bryan Frimin Date: Tue, 22 Apr 2025 13:36:08 -0700 Subject: [PATCH] Remove prefix for vendor id Signed-off-by: Bryan Frimin --- .../src/pages/organizations/vendors/VendorView.tsx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/apps/console/src/pages/organizations/vendors/VendorView.tsx b/apps/console/src/pages/organizations/vendors/VendorView.tsx index a7f4dfccc..19f159d81 100644 --- a/apps/console/src/pages/organizations/vendors/VendorView.tsx +++ b/apps/console/src/pages/organizations/vendors/VendorView.tsx @@ -1163,12 +1163,6 @@ function VendorViewContent({ }); }; - const getVendorId = () => { - const id = data.node.id; - if (!id) return ""; - return `vendor_${id.split(':')[1] || id}`; - }; - const renderTabContent = () => { switch (activeTab) { case 'overview': @@ -1177,7 +1171,7 @@ function VendorViewContent({

Vendor ID

-

{getVendorId()}

+

{data.node.id}

Joined