diff --git a/src/common/utils/camelCase.ts b/src/common/utils/camelCase.ts index 02854ca4e6..3ef727a2e5 100644 --- a/src/common/utils/camelCase.ts +++ b/src/common/utils/camelCase.ts @@ -5,7 +5,7 @@ // Convert object's keys to camelCase format import { camelCase } from "lodash"; -import type { SingleOrMany } from "."; +import type { SingleOrMany } from "./types"; import { isObject } from "./type-narrowing"; export function toCamelCase[]>(obj: T): T; diff --git a/src/common/utils/wait.ts b/src/common/utils/wait.ts index 4e6ef7634a..096e45b8a8 100644 --- a/src/common/utils/wait.ts +++ b/src/common/utils/wait.ts @@ -4,7 +4,7 @@ */ import type { IComputedValue } from "mobx"; import { runInAction, when } from "mobx"; -import type { Disposer } from "."; +import type { Disposer } from "./disposer"; /** * Copyright (c) OpenLens Authors. All rights reserved. diff --git a/src/renderer/components/switch/__tests__/switch.test.tsx b/src/renderer/components/switch/__tests__/switch.test.tsx index 20b262ab01..a43da4e706 100644 --- a/src/renderer/components/switch/__tests__/switch.test.tsx +++ b/src/renderer/components/switch/__tests__/switch.test.tsx @@ -6,7 +6,7 @@ import React from "react"; import { fireEvent, render } from "@testing-library/react"; import "@testing-library/jest-dom/extend-expect"; -import { Switch } from ".."; +import { Switch } from "../switch"; describe("", () => { it("renders w/o errors", () => {