1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-04-26 09:32:20 -04:00
parent 29454a0a11
commit cedde7f85a
3 changed files with 3 additions and 3 deletions

View File

@ -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<T extends Record<string, unknown>[]>(obj: T): T;

View File

@ -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.

View File

@ -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("<Switch/>", () => {
it("renders w/o errors", () => {