From e3c0dccdf564f99d41c11087071a240335c43bfe Mon Sep 17 00:00:00 2001 From: Janne Savolainen Date: Tue, 19 Jul 2022 09:39:21 +0300 Subject: [PATCH] Remove unused dependency Signed-off-by: Janne Savolainen --- src/renderer/components/+helm-charts/helm-chart-details.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/renderer/components/+helm-charts/helm-chart-details.tsx b/src/renderer/components/+helm-charts/helm-chart-details.tsx index 01a83ed745..d15552dedb 100644 --- a/src/renderer/components/+helm-charts/helm-chart-details.tsx +++ b/src/renderer/components/+helm-charts/helm-chart-details.tsx @@ -19,8 +19,6 @@ import { Tooltip, withStyles } from "@material-ui/core"; import type { IAsyncComputed } from "@ogre-tools/injectable-react"; import { withInjectables } from "@ogre-tools/injectable-react"; import createInstallChartTabInjectable from "../dock/install-chart/create-install-chart-tab.injectable"; -import type { ShowCheckedErrorNotification } from "../notifications/show-checked-error.injectable"; -import showCheckedErrorNotificationInjectable from "../notifications/show-checked-error.injectable"; import { HelmChartIcon } from "./icon"; import readmeOfSelectHelmChartInjectable from "./details/readme-of-selected-helm-chart.injectable"; import versionsOfSelectedHelmChartInjectable from "./details/versions-of-selected-helm-chart.injectable"; @@ -41,7 +39,6 @@ const LargeTooltip = withStyles({ interface Dependencies { createInstallChartTab: (helmChart: HelmChart) => void; - showCheckedErrorNotification: ShowCheckedErrorNotification; versions: IAsyncComputed; readme: IAsyncComputed; versionSelection: HelmChartDetailsVersionSelection; @@ -189,7 +186,6 @@ export const HelmChartDetails = withInjectables ({ ...props, createInstallChartTab: di.inject(createInstallChartTabInjectable), - showCheckedErrorNotification: di.inject(showCheckedErrorNotificationInjectable), readme: di.inject(readmeOfSelectHelmChartInjectable, props.chart), versions: di.inject(versionsOfSelectedHelmChartInjectable, props.chart), versionSelection: di.inject(helmChartDetailsVersionSelectionInjectable, props.chart),