diff --git a/src/main/window-manager.ts b/src/main/window-manager.ts index 13c8727c88..08a11d9c87 100644 --- a/src/main/window-manager.ts +++ b/src/main/window-manager.ts @@ -11,7 +11,7 @@ import { appEventBus } from "../common/app-event-bus/event-bus"; import { ipcMainOn } from "../common/ipc"; import { delay, iter, openBrowser } from "../common/utils"; 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 logger from "./logger"; import { isMac, productName } from "../common/vars"; diff --git a/src/renderer/routes/extension-route-registrator.injectable.tsx b/src/renderer/routes/extension-route-registrator.injectable.tsx index 789a4945eb..e8eeee5d9d 100644 --- a/src/renderer/routes/extension-route-registrator.injectable.tsx +++ b/src/renderer/routes/extension-route-registrator.injectable.tsx @@ -37,7 +37,7 @@ const extensionRouteRegistratorInjectable = getInjectable({ extensionInstallationCount, ); - const routeInjectables: Injectable[] = [ + const routeInjectables = [ ...extension.globalPages.map(toRouteInjectable(false)), ...extension.clusterPages.map(toRouteInjectable(true)), ].flat();