From 96ea9e120715266d8808dfe78648c72c75370f21 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 18 Feb 2026 19:28:00 -0500 Subject: [PATCH] feat: remove app bar driver health badge Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude Co-Authored-By: Happy --- src/index.tsx | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index 69e3d1d..ecea5b8 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -6,7 +6,6 @@ */ import { - registerAppBarAction, registerDetailsViewHeaderAction, registerDetailsViewSection, registerPluginSettings, @@ -16,7 +15,6 @@ import { } from '@kinvolk/headlamp-plugin/lib'; import React from 'react'; import { TnsCsiDataProvider } from './api/TnsCsiDataContext'; -import AppBarDriverBadge from './components/AppBarDriverBadge'; import TnsCsiSettings from './components/TnsCsiSettings'; import BenchmarkPage from './components/BenchmarkPage'; import DriverPodDetailSection from './components/DriverPodDetailSection'; @@ -208,16 +206,6 @@ registerDetailsViewHeaderAction(({ resource }) => { return ; }); -// --------------------------------------------------------------------------- -// App bar action — driver health badge -// --------------------------------------------------------------------------- - -registerAppBarAction(() => ( - - - -)); - // --------------------------------------------------------------------------- // Plugin settings // ---------------------------------------------------------------------------