1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix code style

Co-authored-by: Mikko Aspiala <mikko.aspiala@gmail.com>

Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
This commit is contained in:
Janne Savolainen 2022-04-27 15:55:25 +03:00
parent a3f139a40d
commit cef683903d
No known key found for this signature in database
GPG Key ID: 8C6CFB2FFFE8F68A
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ import { appEventBus } from "../common/app-event-bus/event-bus";
import { ipcMainOn } from "../common/ipc"; import { ipcMainOn } from "../common/ipc";
import { delay, iter, openBrowser } from "../common/utils"; import { delay, iter, openBrowser } from "../common/utils";
import type { ClusterFrameInfo } from "../common/cluster-frames"; import type { ClusterFrameInfo } from "../common/cluster-frames";
import { ClusterFrameInfo, clusterFrameMap } from "../common/cluster-frames"; import { clusterFrameMap } from "../common/cluster-frames";
import { IpcRendererNavigationEvents } from "../renderer/navigation/events"; import { IpcRendererNavigationEvents } from "../renderer/navigation/events";
import logger from "./logger"; import logger from "./logger";
import { isMac, productName } from "../common/vars"; import { isMac, productName } from "../common/vars";

View File

@ -37,7 +37,7 @@ const extensionRouteRegistratorInjectable = getInjectable({
extensionInstallationCount, extensionInstallationCount,
); );
const routeInjectables: Injectable<any, any, any>[] = [ const routeInjectables = [
...extension.globalPages.map(toRouteInjectable(false)), ...extension.globalPages.map(toRouteInjectable(false)),
...extension.clusterPages.map(toRouteInjectable(true)), ...extension.clusterPages.map(toRouteInjectable(true)),
].flat(); ].flat();