mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
fix lint
Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
parent
29454a0a11
commit
cedde7f85a
@ -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;
|
||||
|
||||
@ -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.
|
||||
|
||||
@ -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", () => {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user