fix(k8s): remove HelmInsightsBox from applications datatable [C9S-313] (#3140)

This commit is contained in:
Josiah Clumont
2026-07-14 08:50:00 +12:00
committed by GitHub
parent e964dff832
commit 9cb28a5cbb
2 changed files with 0 additions and 21 deletions
@@ -34,7 +34,6 @@ import { Application, ApplicationRowData, ConfigKind } from './types';
import { useColumns } from './useColumns';
import { getPublishedUrls } from './PublishedPorts';
import { SubRow } from './SubRow';
import { HelmInsightsBox } from './HelmInsightsBox';
export function ApplicationsDatatable({
tableState,
@@ -139,9 +138,6 @@ export function ApplicationsDatatable({
<SystemResourceDescription
showSystemResources={tableState.showSystemResources}
/>
<div className="w-fit">
<HelmInsightsBox />
</div>
</div>
</div>
}
@@ -1,17 +0,0 @@
import { InsightsBox } from '@@/InsightsBox';
export function HelmInsightsBox() {
return (
<InsightsBox
header="Helm option"
content={
<span>
From 2.20 and on, the Helm menu sidebar option has moved to the{' '}
<strong>Create from code screen</strong> - accessed via the button
above.
</span>
}
insightCloseId="k8s-helm"
/>
);
}