From 2a1eaa234841a52acd6a08a9497798344eb12e4e Mon Sep 17 00:00:00 2001 From: Iku-turso Date: Sun, 26 Nov 2023 20:40:05 +0200 Subject: [PATCH] chore: Adapt to weird breaking change in mobX API --- .../injectable/react/src/withInjectables/withInjectables.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/injectable/react/src/withInjectables/withInjectables.js b/packages/injectable/react/src/withInjectables/withInjectables.js index f807934d..8ca14a72 100644 --- a/packages/injectable/react/src/withInjectables/withInjectables.js +++ b/packages/injectable/react/src/withInjectables/withInjectables.js @@ -75,7 +75,7 @@ export default (Component, { getPlaceholder = constant(null), getProps }) => ); const getObservablePromise = asyncValue => { - const observableObject = observable({ value: null }, null, { + const observableObject = observable({ value: null }, undefined, { deep: false, });