diff --git a/ui-react/apps/console/src/pages/devices/__tests__/Devices.test.tsx b/ui-react/apps/console/src/pages/devices/__tests__/Devices.test.tsx
index 82bce96f364..65bc22b2d9b 100644
--- a/ui-react/apps/console/src/pages/devices/__tests__/Devices.test.tsx
+++ b/ui-react/apps/console/src/pages/devices/__tests__/Devices.test.tsx
@@ -224,18 +224,6 @@ describe("Devices list", () => {
screen.getByPlaceholderText("Search by hostname..."),
).toBeInTheDocument();
});
-
- it('renders the "Custom Fields" column header', () => {
- vi.mocked(useDevices).mockReturnValue({
- ...defaultHookState,
- devices: [makeDevice()],
- totalCount: 1,
- });
- renderPage();
- expect(
- screen.getByRole("columnheader", { name: "Custom Fields" }),
- ).toBeInTheDocument();
- });
});
describe("loading state", () => {
@@ -284,48 +272,6 @@ describe("Devices list", () => {
});
});
- describe("custom fields column", () => {
- it("renders '—' when device has no custom fields", () => {
- vi.mocked(useDevices).mockReturnValue({
- ...defaultHookState,
- devices: [makeDevice({ custom_fields: {} })],
- totalCount: 1,
- });
- renderPage();
- expect(screen.getByText("—")).toBeInTheDocument();
- });
-
- it("renders key and value badges for each custom field", () => {
- vi.mocked(useDevices).mockReturnValue({
- ...defaultHookState,
- devices: [
- makeDevice({ custom_fields: { env: "production", owner: "team-a" } }),
- ],
- totalCount: 1,
- });
- renderPage();
- expect(screen.getByText("env")).toBeInTheDocument();
- expect(screen.getByText("production")).toBeInTheDocument();
- expect(screen.getByText("owner")).toBeInTheDocument();
- expect(screen.getByText("team-a")).toBeInTheDocument();
- });
-
- it("renders multiple custom field badges for multiple fields", () => {
- vi.mocked(useDevices).mockReturnValue({
- ...defaultHookState,
- devices: [makeDevice({ custom_fields: { a: "1", b: "2", c: "3" } })],
- totalCount: 1,
- });
- renderPage();
- expect(screen.getByText("a")).toBeInTheDocument();
- expect(screen.getByText("1")).toBeInTheDocument();
- expect(screen.getByText("b")).toBeInTheDocument();
- expect(screen.getByText("2")).toBeInTheDocument();
- expect(screen.getByText("c")).toBeInTheDocument();
- expect(screen.getByText("3")).toBeInTheDocument();
- });
- });
-
describe("error state", () => {
it("renders an error message when hook returns an error", () => {
vi.mocked(useDevices).mockReturnValue({
diff --git a/ui-react/apps/console/src/pages/devices/index.tsx b/ui-react/apps/console/src/pages/devices/index.tsx
index 03dc4e73bc7..2db2ccbc456 100644
--- a/ui-react/apps/console/src/pages/devices/index.tsx
+++ b/ui-react/apps/console/src/pages/devices/index.tsx
@@ -136,34 +136,6 @@ export default function Devices() {