From f2d19e7d439a7264c976ba062d8287b561dbe15e Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Wed, 26 Oct 2022 15:00:14 -0400 Subject: [PATCH] Fix some more lint Signed-off-by: Sebastian Malton --- .../select-helm-repository/add-helm-repository.injectable.ts | 2 +- .../preferences/renderer/remove-helm-repository.injectable.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/features/helm-charts/child-features/preferences/renderer/adding-of-public-helm-repository/select-helm-repository/add-helm-repository.injectable.ts b/src/features/helm-charts/child-features/preferences/renderer/adding-of-public-helm-repository/select-helm-repository/add-helm-repository.injectable.ts index b2cb8ab52f..28af3c64ac 100644 --- a/src/features/helm-charts/child-features/preferences/renderer/adding-of-public-helm-repository/select-helm-repository/add-helm-repository.injectable.ts +++ b/src/features/helm-charts/child-features/preferences/renderer/adding-of-public-helm-repository/select-helm-repository/add-helm-repository.injectable.ts @@ -8,7 +8,7 @@ import activeHelmRepositoriesInjectable from "../../active-helm-repositories.inj import showErrorNotificationInjectable from "../../../../../../../renderer/components/notifications/show-error-notification.injectable"; import showSuccessNotificationInjectable from "../../../../../../../renderer/components/notifications/show-success-notification.injectable"; import { addHelmRepositoryChannel } from "../../../../../../../common/helm/add-helm-repository-channel"; -import requestFromChannelInjectable from "../../../../../../utils/channel/request-from-channel.injectable"; +import requestFromChannelInjectable from "../../../../../../../renderer/utils/channel/request-from-channel.injectable"; const addHelmRepositoryInjectable = getInjectable({ id: "add-public-helm-repository", diff --git a/src/features/helm-charts/child-features/preferences/renderer/remove-helm-repository.injectable.ts b/src/features/helm-charts/child-features/preferences/renderer/remove-helm-repository.injectable.ts index 823ef1495e..5bb3294a67 100644 --- a/src/features/helm-charts/child-features/preferences/renderer/remove-helm-repository.injectable.ts +++ b/src/features/helm-charts/child-features/preferences/renderer/remove-helm-repository.injectable.ts @@ -6,7 +6,7 @@ import { getInjectable } from "@ogre-tools/injectable"; import type { HelmRepo } from "../../../../../common/helm/helm-repo"; import activeHelmRepositoriesInjectable from "./active-helm-repositories.injectable"; import { removeHelmRepositoryChannel } from "../../../../../common/helm/remove-helm-repository-channel"; -import requestFromChannelInjectable from "../../../../utils/channel/request-from-channel.injectable"; +import requestFromChannelInjectable from "../../../../../renderer/utils/channel/request-from-channel.injectable"; const removePublicHelmRepositoryInjectable = getInjectable({ id: "remove-public-helm-repository",