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

fix: Disable cycle detection due to bug in ogre-tools

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2023-04-06 14:27:33 -04:00
parent 5198cb6f27
commit d4e8b48b4a
2 changed files with 6 additions and 2 deletions

View File

@ -14,7 +14,9 @@ import { messagingFeatureForMain } from "@k8slens/messaging-for-main";
const environment = "main";
const di = createContainer(environment);
const di = createContainer(environment, {
detectCycles: false,
});
registerMobX(di);

View File

@ -21,7 +21,9 @@ import { reactApplicationFeature } from "@k8slens/react-application";
const environment = "renderer";
const di = createContainer(environment);
const di = createContainer(environment, {
detectCycles: false,
});
runInAction(() => {
registerMobX(di);