From 1a43abd7ba2184ed012a810758532df44d1ac755 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Thu, 4 Aug 2022 12:43:26 -0400 Subject: [PATCH] Fix bootstrap types Signed-off-by: Sebastian Malton --- src/renderer/bootstrap.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/renderer/bootstrap.tsx b/src/renderer/bootstrap.tsx index 5573dbdbd2..ef19283e5d 100644 --- a/src/renderer/bootstrap.tsx +++ b/src/renderer/bootstrap.tsx @@ -46,6 +46,7 @@ import kubernetesClusterCategoryInjectable from "../common/catalog/categories/ku import autoRegistrationInjectable from "../common/k8s-api/api-manager/auto-registration.injectable"; import assert from "assert"; import startFrameInjectable from "./start-frame/start-frame.injectable"; +import catalogCategoryRegistryInjectable from "../common/catalog/category-registry.injectable"; configurePackages(); // global packages registerCustomThemes(); // monaco editor themes @@ -116,6 +117,7 @@ export async function bootstrap(di: DiContainer) { initializers.initCatalog({ openCommandDialog: di.inject(commandOverlayInjectable).open, openDeleteClusterDialog: di.inject(openDeleteClusterDialogInjectable), + catalogCategoryRegistry: di.inject(catalogCategoryRegistryInjectable), }); const extensionLoader = di.inject(extensionLoaderInjectable);