diff --git a/src/renderer/components/app-paths/app-paths.injectable.ts b/src/renderer/app-paths/app-paths.injectable.ts similarity index 96% rename from src/renderer/components/app-paths/app-paths.injectable.ts rename to src/renderer/app-paths/app-paths.injectable.ts index 841af9eb6c..170a1cd86f 100644 --- a/src/renderer/components/app-paths/app-paths.injectable.ts +++ b/src/renderer/app-paths/app-paths.injectable.ts @@ -19,7 +19,7 @@ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import { getInjectable, lifecycleEnum } from "@ogre-tools/injectable"; -import { AppPaths, appPathsInjectionToken, appPathsIpcChannel } from "../../../common/app-paths/app-path-injection-token"; +import { AppPaths, appPathsInjectionToken, appPathsIpcChannel } from "../../common/app-paths/app-path-injection-token"; import getValueFromRegisteredChannelInjectable from "./get-value-from-registered-channel/get-value-from-registered-channel.injectable"; let syncAppPaths: AppPaths; diff --git a/src/renderer/components/app-paths/get-value-from-registered-channel/get-value-from-registered-channel.injectable.ts b/src/renderer/app-paths/get-value-from-registered-channel/get-value-from-registered-channel.injectable.ts similarity index 100% rename from src/renderer/components/app-paths/get-value-from-registered-channel/get-value-from-registered-channel.injectable.ts rename to src/renderer/app-paths/get-value-from-registered-channel/get-value-from-registered-channel.injectable.ts diff --git a/src/renderer/components/app-paths/get-value-from-registered-channel/get-value-from-registered-channel.ts b/src/renderer/app-paths/get-value-from-registered-channel/get-value-from-registered-channel.ts similarity index 95% rename from src/renderer/components/app-paths/get-value-from-registered-channel/get-value-from-registered-channel.ts rename to src/renderer/app-paths/get-value-from-registered-channel/get-value-from-registered-channel.ts index aabfe3f5ba..939bc92a8d 100644 --- a/src/renderer/components/app-paths/get-value-from-registered-channel/get-value-from-registered-channel.ts +++ b/src/renderer/app-paths/get-value-from-registered-channel/get-value-from-registered-channel.ts @@ -19,7 +19,7 @@ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import type { IpcRenderer } from "electron"; -import type { Channel } from "../../../../common/ipc-channel/channel"; +import type { Channel } from "../../../common/ipc-channel/channel"; interface Dependencies { ipcRenderer: IpcRenderer; diff --git a/src/renderer/components/app-paths/get-value-from-registered-channel/ipc-renderer/ipc-renderer.injectable.ts b/src/renderer/app-paths/get-value-from-registered-channel/ipc-renderer/ipc-renderer.injectable.ts similarity index 100% rename from src/renderer/components/app-paths/get-value-from-registered-channel/ipc-renderer/ipc-renderer.injectable.ts rename to src/renderer/app-paths/get-value-from-registered-channel/ipc-renderer/ipc-renderer.injectable.ts diff --git a/src/renderer/frames/root-frame/init-root-frame/init-root-frame.injectable.ts b/src/renderer/frames/root-frame/init-root-frame/init-root-frame.injectable.ts index 44a0f6693d..f474f4f03f 100644 --- a/src/renderer/frames/root-frame/init-root-frame/init-root-frame.injectable.ts +++ b/src/renderer/frames/root-frame/init-root-frame/init-root-frame.injectable.ts @@ -21,7 +21,7 @@ import { getInjectable, lifecycleEnum } from "@ogre-tools/injectable"; import { initRootFrame } from "./init-root-frame"; import extensionLoaderInjectable from "../../../../extensions/extension-loader/extension-loader.injectable"; -import ipcRendererInjectable from "../../../components/app-paths/get-value-from-registered-channel/ipc-renderer/ipc-renderer.injectable"; +import ipcRendererInjectable from "../../../app-paths/get-value-from-registered-channel/ipc-renderer/ipc-renderer.injectable"; import bindProtocolAddRouteHandlersInjectable from "../../../protocol-handler/bind-protocol-add-route-handlers/bind-protocol-add-route-handlers.injectable"; import lensProtocolRouterRendererInjectable from "../../../protocol-handler/lens-protocol-router-renderer/lens-protocol-router-renderer.injectable"; import catalogEntityRegistryInjectable from "../../../api/catalog-entity-registry/catalog-entity-registry.injectable"; diff --git a/src/renderer/getDiForUnitTesting.tsx b/src/renderer/getDiForUnitTesting.tsx index 419cf6a557..5bbcbe0da1 100644 --- a/src/renderer/getDiForUnitTesting.tsx +++ b/src/renderer/getDiForUnitTesting.tsx @@ -23,7 +23,7 @@ import glob from "glob"; import { memoize } from "lodash/fp"; import { createContainer } from "@ogre-tools/injectable"; import { setLegacyGlobalDiForExtensionApi } from "../extensions/as-legacy-globals-for-extension-api/legacy-global-di-for-extension-api"; -import getValueFromRegisteredChannelInjectable from "./components/app-paths/get-value-from-registered-channel/get-value-from-registered-channel.injectable"; +import getValueFromRegisteredChannelInjectable from "./app-paths/get-value-from-registered-channel/get-value-from-registered-channel.injectable"; import writeJsonFileInjectable from "../common/fs/write-json-file/write-json-file.injectable"; import readJsonFileInjectable from "../common/fs/read-json-file/read-json-file.injectable"; diff --git a/src/test-utils/override-ipc-bridge.ts b/src/test-utils/override-ipc-bridge.ts index a08451fc4f..b76e346ed2 100644 --- a/src/test-utils/override-ipc-bridge.ts +++ b/src/test-utils/override-ipc-bridge.ts @@ -20,7 +20,7 @@ */ import type { DependencyInjectionContainer } from "@ogre-tools/injectable"; import type { Channel } from "../common/ipc-channel/channel"; -import getValueFromRegisteredChannelInjectable from "../renderer/components/app-paths/get-value-from-registered-channel/get-value-from-registered-channel.injectable"; +import getValueFromRegisteredChannelInjectable from "../renderer/app-paths/get-value-from-registered-channel/get-value-from-registered-channel.injectable"; import registerChannelInjectable from "../main/app-paths/register-channel/register-channel.injectable"; import asyncFn from "@async-fn/jest";