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:
parent
5198cb6f27
commit
d4e8b48b4a
@ -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);
|
||||
|
||||
|
||||
@ -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);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user